![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2012 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtExtendedStateData.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCore/vrfGuiCore.h> 00017 #include <vrfGuiCore/DtSimpleTypedDictionary.h> 00018 #include <vrvCore/DtSimState.h> 00019 #include <vrvCore/DtStateView.h> 00020 00021 namespace makVrv 00022 { 00023 class DtMessage; 00024 } 00025 00026 namespace makVrf 00027 { 00028 struct DT_DLL_VRFGUICORE DtExtendedStateData : public makVrv::DtSimState 00029 { 00030 00031 public: 00032 00034 DtExtendedStateData(); 00035 00037 virtual ~DtExtendedStateData(); 00038 00039 bool operator==(const DtExtendedStateData&) const; 00040 bool operator!=(const DtExtendedStateData& rhs) const 00041 { 00042 return !(*this == rhs); 00043 } 00044 00045 public: 00046 DtSimpleTypedDictionary myExtendedData; 00047 }; 00048 00050 DT_DLL_VRFGUICORE makVrv::DtMessage& operator<<( makVrv::DtMessage& msg,const DtExtendedStateData& state ); 00051 00053 DT_DLL_VRFGUICORE makVrv::DtMessage& operator>>( makVrv::DtMessage& msg, DtExtendedStateData& state ); 00054 00055 00057 typedef makVrv::DtStateView<DtExtendedStateData> DtExtendedStateDataView; 00058 }