VR-Forces 4.3 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/DtConfiguration.h
>
14
#include <
vrvUtil/DtWindowConfiguration.h
>
15
#include <
vrvUtil/DtConfigurationCollection.h
>
16
17
#include <string>
18
19
namespace
makVrv
20
{
21
22
typedef
DtConfigurationCollection<DtWindowConfiguration>
DtWindowConfigurations
;
23
27
50
51
class
DT_DLL_VRVUTIL
DtDisplayConfiguration
:
public
DtConfiguration
52
{
53
54
public
:
55
58
static
const
char
*
DefaultDisplayString
;
59
61
DtDisplayConfiguration
(
const
std::string& name = DefaultDisplayString);
62
64
DtDisplayConfiguration
(
const
DtDisplayConfiguration
& copy);
65
67
DtDisplayConfiguration
& operator=(
const
DtDisplayConfiguration
& copy);
68
70
virtual
~
DtDisplayConfiguration
();
71
77
DT_DECLARE_ALL_serialize_FUNCTIONS
78
80
DtWindowConfigurations
& windowConfigurations();
81
const
DtWindowConfigurations
& windowConfigurations()
const
;
82
83
protected
:
84
85
template
<
class
Archive>
86
void
_serialize(Archive & ar,
const
unsigned
int
version)
87
{
88
ar &
DT_SERIALIZE_BASE
(
DtConfiguration
);
89
ar &
DT_SERIALIZE_MEMBER
(myWindowConfigurations);
90
}
91
92
protected
:
93
94
DtWindowConfigurations
myWindowConfigurations
;
95
};
96
}
97
98
BOOST_CLASS_VERSION
(
makVrv::DtDisplayConfiguration
, 2)
Document ID: Generated on Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)