1 /*!
2  * \file   GeneratorOptions.cxx
3  * \brief
4  * \author Thomas Helfer
5  * \date   09/07/2017
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
foo(string f)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/GeneratorOptions.hxx"
15 
16 namespace mfront{
17 
18   GeneratorOptions::GeneratorOptions() = default;
19   GeneratorOptions::GeneratorOptions(const GeneratorOptions&) = default;
20   GeneratorOptions::GeneratorOptions(GeneratorOptions&&) = default;
21   GeneratorOptions&
22   GeneratorOptions::operator=(const GeneratorOptions&) = default;
23   GeneratorOptions&
24   GeneratorOptions::operator =(GeneratorOptions&&) = default;
25   GeneratorOptions::~GeneratorOptions() = default;
26 
27 } // end of namespace mfront
28