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