VR-Forces 4.6.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfGuiCore
extendedStateData.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2017 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
8
10
11
#pragma once
12
13
#include <
vrfGuiCore/vrfGuiCore.h
>
14
#include <
vrfGuiCore/simpleTypedDictionary.h
>
15
#include <
vrvCore/DtSimState.h
>
16
#include <
vrvCore/DtStateView.h
>
17
#include <
vrvCore/DtStateViewCollection.h
>
18
19
namespace
makVrv
20
{
21
class
DtMessage;
22
}
23
24
namespace
makVrf
25
{
26
struct
DT_DLL_VRFGUICORE
DtExtendedStateData
:
public
makVrv::DtSimState
27
{
28
29
public
:
30
32
DtExtendedStateData
();
33
35
virtual
~
DtExtendedStateData
();
36
37
bool
operator==
(
const
DtExtendedStateData
&)
const
;
38
bool
operator!=
(
const
DtExtendedStateData
& rhs)
const
39
{
40
return
!(*
this
== rhs);
41
}
42
43
public
:
44
DtSimpleTypedDictionary
myExtendedData
;
45
};
46
48
DT_DLL_VRFGUICORE
makVrv::DtMessage
&
operator<<
(
makVrv::DtMessage
& msg,
const
DtExtendedStateData
& state );
49
51
DT_DLL_VRFGUICORE
makVrv::DtMessage
&
operator>>
(
makVrv::DtMessage
& msg,
DtExtendedStateData
& state );
52
53
55
typedef
makVrv::DtStateView<DtExtendedStateData>
DtExtendedStateDataView
;
56
58
class
DT_DLL_VRFGUICORE
DtExtendedStateDataViewCollection
:
public
makVrv::DtStateViewCollection
<DtExtendedStateData>
59
{
60
public
:
61
DtExtendedStateDataViewCollection
(
makVrv::DtDe
& de) :
62
makVrv::DtStateViewCollection<
DtExtendedStateData
>(de, makVrv::DtSimEntryUpdater::NoUpdates)
63
{
64
}
65
};
66
}
Document ID: Generated on Wed Jul 25 16:57:45 EDT 2018 from SVN revision 190790
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)