![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtSimStateObject.h,v $ $Revision: 1.10 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtSimStateObject_H_ 00014 #define DtSimStateObject_H_ 00015 00016 #include <vrvCore/vrvCore.h> 00017 #include <vrvCore/DtDe.h> 00018 #include <vrvCore/DtUniqueID.h> 00019 00020 namespace makVrv 00021 { 00022 00023 struct DtSimState; 00024 class DtSimEntry; 00025 00028 class DT_DLL_VRVCORE DtSimStateObject 00029 { 00030 public: 00031 00033 DtSimStateObject(DtDe& de, DtUniqueID id); 00034 00036 virtual ~DtSimStateObject(); 00037 00039 virtual void addStateToSimEntry(DtUniqueID id); 00040 00042 virtual void removeStateFromSimEntry(); 00043 00046 virtual void addStateToSimEvent(); 00047 00051 00052 protected: 00053 00054 DtDe& myDe; 00055 DtUniqueID mySimEntryId; 00056 DtSimState* myState; 00057 DtSimEntry* mySimEntry; 00058 00059 }; 00060 00061 } 00062 00063 #endif 00064