![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtSimEntryObject.h,v $ $Revision: 1.9 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtSimEntryObject_H_ 00014 #define DtSimEntryObject_H_ 00015 00016 #include <vrvCore/vrvCore.h> 00017 #include <vrvCore/DtDe.h> 00018 #include <vrvCore/DtUniqueID.h> 00019 00020 namespace makVrv 00021 { 00025 class DT_DLL_VRVCORE DtSimEntryObject 00026 { 00027 00028 public: 00029 00031 DtSimEntryObject(DtDe& de, DtUniqueID id); 00032 00034 virtual ~DtSimEntryObject(); 00035 00037 virtual void addEntry(DtUniqueID id); 00038 00040 virtual void removeEntry(DtUniqueID id); 00041 00043 virtual void signalEvent(); 00044 00045 protected: 00046 00047 DtDe& myDe; 00048 00049 }; 00050 } 00051 00052 #endif 00053