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