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