VR-Forces 4.7 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
vrfmsgs
ifGlobalPlanList.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
10
11
#pragma once
12
13
#include "
vrfmsgs/vrfmsgsDefines.h
"
14
#include <
vrfExtProtocol/simInterfaceContent.h
>
15
#include <vlpi/entityIdentifier.h>
16
#include <
vrfutil/rwUUID.h
>
17
#include <vector>
18
21
class
DT_DLL_vrfmsgs
DtIfGlobalPlanList
:
public
DtSimInterfaceContent
22
{
23
public
:
24
struct
GlobalPlansInformation
25
{
26
GlobalPlansInformation
() : uuid(
DtUUID
::nullUUID()) {}
27
28
DtUUID
uuid
;
29
DtString
name
;
30
DtEntityIdentifier
entityId
;
31
bool
isQuickLaunch
;
32
bool
isLaunched
;
33
bool
showOnQuickLaunchToolbar
;
34
int
ordinal
;
35
DtString
icon
;
36
};
37
38
typedef
std::vector<GlobalPlansInformation>
GlobalPlans
;
39
40
public
:
42
DtIfGlobalPlanList
();
43
45
DtIfGlobalPlanList
(
const
DtIfGlobalPlanList
& orig);
46
48
const
DtIfGlobalPlanList
&
operator=
(
const
DtIfGlobalPlanList
& orig);
49
50
virtual
~
DtIfGlobalPlanList
();
51
52
virtual
int
type
()
const
;
53
54
virtual
DtSimInterfaceContent
*
clone
()
const
;
55
57
58
virtual
void
addGlobalPlanInformation(
const
DtUUID
&,
const
DtString
& planName,
const
DtEntityIdentifier&
id
,
59
bool
isQuickLaunch =
false
,
bool
showOnQuickLaunchToolbar =
false
,
60
bool
isLaunched =
false
,
const
DtString
& planIcon =
""
,
int
ordinal = 0);
61
virtual
const
GlobalPlans
& globalPlans()
const
;
63
64
virtual
int
netRepSize
()
const
;
65
virtual
bool
setFromNet
(
const
char
* contentBuffer,
66
unsigned
contentSize);
67
virtual
bool
setToNet
();
68
69
virtual
void
printDataToString
(
DtString
& str);
70
71
static
DtSimInterfaceContent
* creator();
72
73
protected
:
74
GlobalPlans
myGlobalPlans
;
75
};
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)