![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2011 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtDataBank.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvCore/vrvCore.h> 00016 #include <vrvCore/DtSimData.h> 00017 #include <vrvCore/DtElementData.h> 00018 00019 namespace makVrv 00020 { 00024 class DT_DLL_VRVCORE DtDataBank 00025 { 00026 public: 00028 DtDataBank(DtDe& de); 00029 00031 ~DtDataBank(); 00032 00033 private: 00034 DtDataBank(const DtDataBank&); 00035 DtDataBank& operator=(const DtDataBank&); 00036 00037 public: 00038 00041 DtSimData& simData(); 00042 00046 DtElementData& elementData(); 00047 00048 private: 00049 DtSimData mySimData; 00050 DtElementData myElementData; 00051 DtDe& myDe; 00052 }; 00053 } 00054