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