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