![]() |
VR-Link API Documentation for HLA 1516
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 00006 00007 #ifndef DtBaseReflectedAggregate_H_ 00008 #define DtBaseReflectedAggregate_H_ 00009 00014 00015 00016 00017 #include <vlutil/vlList.h> 00018 #include <matrix/vlMath.h> 00019 #include "objectId.h" 00020 #include "hostStructs.h" 00021 #include "stateMsg.h" 00022 00023 class DT_DLL_VL DtAggregateStateRepository; 00024 00030 class DT_DLL_VL DtBaseReflectedAggregate : public DtListedObj 00031 { 00032 00033 00034 public: 00035 00037 virtual ~DtBaseReflectedAggregate(); 00038 00040 DtBaseReflectedAggregate& operator=(const DtBaseReflectedAggregate& orig); 00041 00043 virtual DtAggregateStateRepository* aggregateStateRep() const = 0; 00044 00046 virtual const DtObjectId& id() const; 00047 00048 00049 protected: 00050 00052 00054 DtBaseReflectedAggregate(const DtObjectId& id); 00055 00057 DtBaseReflectedAggregate(const DtBaseReflectedAggregate& orig); 00058 00059 00060 protected: 00061 00062 DtObjectId myObjectId; 00063 00064 }; 00065 00066 #endif 00067