Acoustic FDTD Solver
Solid.hpp
Go to the documentation of this file.
1 #ifndef SOLID_HPP
2 #define SOLID_HPP
3 #include "Shape.hpp"
4 #include "Material.hpp"
5 #include "Vacuum.hpp"
6 #include "MaterialDecorator.hpp"
7 #include "AcousticProperty.hpp"
8 #include "HNAcousticProperty.hpp"
9 #include "ElasticProperty.hpp"
10 
11 
15 class Solid {
16 public:
17  Shape *s;
19 public:
20  Solid(Shape *shape, Material *material);
21 };
22 
23 
24 #endif