VR-Vantage API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Tutorials
File List
File Members
include
vrvCore
DtDataBank.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2011 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtDataBank.h,v $ $Revision: 1.1 $ $State: Exp $
7
******************************************************************************/
8
12
13
#pragma once
14
15
#include <
vrvCore/vrvCore.h
>
16
#include <
vrvCore/DtSimData.h
>
17
#include <
vrvCore/DtElementData.h
>
18
19
namespace
makVrv
20
{
24
class
DT_DLL_VRVCORE
DtDataBank
25
{
26
public
:
28
DtDataBank
(
DtDe
& de);
29
31
~
DtDataBank
();
32
33
private
:
34
DtDataBank
(
const
DtDataBank
&);
35
DtDataBank
& operator=(
const
DtDataBank
&);
36
37
public
:
38
41
DtSimData
& simData();
42
46
DtElementData
& elementData();
47
48
private
:
49
DtSimData
mySimData
;
50
DtElementData
myElementData
;
51
DtDe
&
myDe
;
52
};
53
}
54
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)