VR-Forces Development_Version Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vrvUtil
DtDisplayConfiguration.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrvUtil/vrvUtil.h
>
13
#include <
vrvUtil/DtWindowConfiguration.h
>
14
15
namespace
makVrv
16
{
17
18
typedef
DtConfigurationCollection<DtWindowConfiguration>
DtWindowConfigurations
;
19
23
46
47
class
DT_DLL_VRVUTIL
DtDisplayConfiguration
:
public
DtConfiguration
48
{
49
50
public
:
51
54
static
const
char
*
DefaultDisplayString
;
55
57
DtDisplayConfiguration
(
const
std::string& name = DefaultDisplayString);
58
60
DtDisplayConfiguration
(
const
DtDisplayConfiguration
& copy);
61
63
DtDisplayConfiguration
& operator=(
const
DtDisplayConfiguration
& copy);
64
66
virtual
~
DtDisplayConfiguration
();
67
73
DT_DECLARE_ALL_serialize_FUNCTIONS
74
76
DtWindowConfigurations
& windowConfigurations();
77
const
DtWindowConfigurations
& windowConfigurations()
const
;
78
79
protected
:
80
81
template
<
class
Archive>
82
void
_serialize(Archive & ar,
const
unsigned
int
version)
83
{
84
ar &
DT_SERIALIZE_BASE
(
DtConfiguration
);
85
ar &
DT_SERIALIZE_MEMBER
(myWindowConfigurations);
86
}
87
88
protected
:
89
90
DtWindowConfigurations
myWindowConfigurations
;
91
};
92
}
93
94
BOOST_CLASS_VERSION
(
makVrv::DtDisplayConfiguration
, 2)
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)