VR-Forces 4.6 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
simpleObjectDataState.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2017 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
6
#pragma once
7
8
#include <
vrfGuiCore/vrfGuiCore.h
>
9
#include <
vrvCore/DtEntityState.h
>
10
#include <
vrfutil/rwUUID.h
>
11
13
namespace
makVrf
14
{
15
static
const
char
DtDoNotAddToUUIDMap
[] =
"DtDoNotAddToUUIDMap"
;
16
18
struct
DT_DLL_VRFGUICORE
DtSimpleObjectDataState
:
public
makVrv::DtVrlinkSimulatedBaseState
19
{
20
public
:
21
DtSimpleObjectDataState
();
22
23
virtual
~
DtSimpleObjectDataState
();
24
25
bool
operator==
(
const
DtSimpleObjectDataState
& rhs)
const
26
{
27
return
(myUUID == rhs.
myUUID
);
28
}
29
30
bool
operator!=
(
const
DtSimpleObjectDataState
& rhs)
const
31
{
32
return
!(*
this
== rhs);
33
}
34
35
public
:
36
DtUUID
myUUID
;
37
};
38
}
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)