VR-Vantage API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Tutorials
File List
File Members
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)
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)