![]() |
MAK RTIspy API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 2001 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: handleList.h,v $ $Revision: 1.13 $ $State: Exp $ 00007 *********************************************************************/ 00008 #ifdef DtMOM 00009 00010 00011 00012 #ifndef DtMomHandleList_H_ 00013 #define DtMomHandleList_H_ 00014 00015 #include "rtiMsConfig.h" 00016 #include <vlutil/vlList.h> 00017 #include "internalTypes.h" 00018 00019 class DtAttributeHandleSet; 00020 00021 class DT_DLL_LRC DtMomHandleList : public MAKRti::DtList 00022 { 00023 public: 00024 00026 DtMomHandleList(); 00027 00029 virtual ~DtMomHandleList(); 00030 00032 virtual void append(DtHandle handle); 00033 00035 virtual bool active(); 00036 virtual void setActive(bool active); 00037 00039 virtual DtHandle data(const MAKRti::DtListItem* item) const; 00040 00041 protected: 00042 bool myActive; 00043 00044 private: 00046 DtMomHandleList(const DtMomHandleList& orig); 00047 00048 00049 }; 00050 00051 #endif 00052 #endif