1 /*!
2  * \file  CodeBlock.cxx
3  * \brief
4  * \author Thomas Helfer
5  * \date   21 janv. 2015
6  * \copyright Copyright (C) 2006-2018 CEA/DEN, EDF R&D. All rights
7  * reserved.
8  * This project is publicly released under either the GNU GPL Licence
9  * or the CECILL-A licence. A copy of thoses licences are delivered
10  * with the sources of TFEL. CEA or EDF may also distribute this
11  * project under specific licensing conditions.
12  */
13 
14 #include"MFront/CodeBlock.hxx"
15 
16 namespace mfront{
17 
18   CodeBlock::CodeBlock() = default;
19   CodeBlock::CodeBlock(CodeBlock&&) = default;
20   CodeBlock::CodeBlock(const CodeBlock&) = default;
21   CodeBlock& CodeBlock::operator=(CodeBlock&&) = default;
22   CodeBlock& CodeBlock::operator=(const CodeBlock&) = default;
23   CodeBlock::~CodeBlock() = default;
24 
25 } // end of namespace mfront
26 
27