![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00009 #pragma once 00010 00018 00019 class DtVrfObjectManager; 00020 00021 #include "vrfmsgs/ifCrtVrfObj.h" 00022 #include "vrfobjcore/objectOperationQueueEntry.h" 00023 00024 #include <list> 00025 00026 #include "vrfobjcore/vrfobjcoreDefines.h" 00027 class DT_DLL_vrfobjcore DtCreateQueueEntry : public DtObjectOperationQueueEntry 00028 { 00029 public: 00033 DtCreateQueueEntry(DtIfCreateVrfObject createMessage, 00034 DtVrfObjectManager* objectManager); 00035 00037 DtCreateQueueEntry(const DtCreateQueueEntry& orig); 00038 00040 virtual ~DtCreateQueueEntry(); 00041 00043 virtual const DtIfCreateVrfObject createMessage() const; 00044 00045 private: 00047 const DtCreateQueueEntry& operator=(const DtCreateQueueEntry& 00048 orig); 00049 00050 protected: 00052 DtIfCreateVrfObject myCreateMessage; 00053 };