ESyS-Particle
4.0.1
|
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 __FIELD_SLAVE_H 00014 #define __FIELD_SLAVE_H 00015 00016 class TML_Comm; 00022 class AFieldSlave 00023 { 00024 private: 00025 protected: 00026 TML_Comm * m_comm; 00027 00028 public: 00029 AFieldSlave(TML_Comm*); 00030 00031 virtual ~AFieldSlave() 00032 { 00033 } 00034 00035 virtual void sendData()=0; 00036 }; 00037 00038 #endif //__FIELD_SLAVE_H