ESyS-Particle  4.0.1
WallFieldSlave.h
1 
2 // //
3 // Copyright (c) 2003-2011 by The University of Queensland //
4 // Earth Systems Science Computational Centre (ESSCC) //
5 // http://www.uq.edu.au/esscc //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __WALLFIELDSLAVE_H
14 #define __WALLFIELDSLAVE_H
15 
16 // --- project includes ---
17 #include "Fields/FieldSlave.h"
18 //#include "Model/Wall.h"
19 
20 // --- STL includes ---
21 #include <vector>
22 
23 using std::vector;
24 
25 class CWall;
26 
35 {
36  protected:
37  vector<CWall*> m_wall;
38 
39  public:
41  void addWall(CWall*);
42 };
43 
44 #endif // __WALLFIELDSLAVE_H