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