Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
VectorHelper.hpp
Go to the documentation of this file.
1 /*
2  * VectorHelper.hpp
3  *
4  * Created on: Nov 18, 2014
5  * Author: nano
6  */
7 
8 #ifndef VECTORHELPER_HPP_
9 #define VECTORHELPER_HPP_
10 
11 #include "HelperBase.hpp"
12 #include "../grid/GridBase.hpp"
13 #include <vector>
14 #include <string>
15 
16 namespace phoxonics {
17 namespace core {
18 
19 class VectorHelper : public HelperBase {
20 public:
21  explicit VectorHelper();
22  virtual ~VectorHelper();
23 };
24 
25 } /* namespace core */
26 } /* namespace phoxonics */
27 
28 #endif /* VECTORHELPER_HPP_ */
virtual ~VectorHelper()
Definition: VectorHelper.cpp:17
Definition: HelperBase.hpp:16
Definition: CommonBase.hpp:14
VectorHelper()
Definition: VectorHelper.cpp:13
Definition: VectorHelper.hpp:19