![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00010 00011 #pragma once 00012 00013 #include <vrvCore/DtDeSharedState.h> 00014 #include <vrvCore/DtDe.h> 00015 00016 class DtVrfDe : public makVrv::DtDe 00017 { 00018 public: 00019 DtVrfDe(); 00020 00021 protected: 00022 virtual void postInitialize(); 00023 }; 00024 00025 class DtVrfSharedState : public makVrv::DtDeSharedState 00026 { 00027 public: 00028 00030 friend class DtVrfSharedStateCreator; 00031 00032 protected: 00034 DtVrfSharedState(makVrv::DtDe& Ig); 00035 00037 virtual void initialize(); 00038 }; 00039 00040 class DtVrfSharedStateCreator : public makVrv::DtDeSharedStateCreator 00041 { 00042 public: 00044 virtual makVrv::DtDeSharedState* create(makVrv::DtDe& de); 00045 }; 00046