ESyS-Particle  4.0.1
WallFieldSlave.h
00001 
00002 //                                                         //
00003 // Copyright (c) 2003-2011 by The University of Queensland //
00004 // Earth Systems Science Computational Centre (ESSCC)      //
00005 // http://www.uq.edu.au/esscc                              //
00006 //                                                         //
00007 // Primary Business: Brisbane, Queensland, Australia       //
00008 // Licensed under the Open Software License version 3.0    //
00009 // http://www.opensource.org/licenses/osl-3.0.php          //
00010 //                                                         //
00012 
00013 #ifndef __WALLFIELDSLAVE_H
00014 #define __WALLFIELDSLAVE_H
00015 
00016 // --- project includes ---
00017 #include "Fields/FieldSlave.h"
00018 //#include "Model/Wall.h"
00019 
00020 // --- STL includes ---
00021 #include <vector>
00022 
00023 using std::vector;
00024 
00025 class CWall;
00026 
00034 class AWallFieldSlave : public AFieldSlave
00035 {
00036  protected:
00037   vector<CWall*> m_wall;
00038 
00039  public:
00040   AWallFieldSlave(TML_Comm*);
00041   void addWall(CWall*);
00042 };
00043 
00044 #endif // __WALLFIELDSLAVE_H