Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
FactoryBase.hpp
Go to the documentation of this file.
1 /*
2  * FactoryBase.hpp
3  *
4  * Created on: Nov 15, 2014
5  * Author: cuda
6  */
7 
8 #ifndef FACTORYBASE_HPP_
9 #define FACTORYBASE_HPP_
10 
11 #include "../../../common/common.hpp"
12 
13 namespace phoxonics {
14 namespace core {
15 
16 class FactoryBase {
17 protected:
18  inline explicit FactoryBase() { };
19  inline virtual ~FactoryBase() { };
20 
23 };
24 
25 } /* namespace core */
26 } /* namespace phoxonics */
27 
28 #endif /* FACTORYBASE_HPP_ */
virtual ~FactoryBase()
Definition: FactoryBase.hpp:19
Definition: CommonBase.hpp:14
phoxonics::common::Logger log_
Definition: FactoryBase.hpp:19
Definition: FactoryBase.hpp:16
phoxonics::common::Formatter fmt_
Definition: FactoryBase.hpp:22
Definition: Logger.hpp:23
Definition: Formatter.hpp:18
FactoryBase()
Definition: FactoryBase.hpp:18