VR-Vantage API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Tutorials
File List
File Members
include
vrvUtil
DtDeConfiguration.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtDeConfiguration.h,v $ $Revision: 1.25 $ $State: Exp $
7
******************************************************************************/
8
12
13
#ifndef DtDeConfiguration_H_
14
#define DtDeConfiguration_H_
15
16
#include <
vrvUtil/vrvUtil.h
>
17
#include <
vrvUtil/DtConfiguration.h
>
18
#include <
vrvUtil/DtDisplayConfiguration.h
>
19
#include <
vrvUtil/DtConfigurationCollection.h
>
20
#include <
makArchives/DtSerialize.h
>
21
22
namespace
makVrv
23
{
24
typedef
DtConfigurationCollection<DtDisplayConfiguration>
DtDisplayConfigurations
;
25
28
class
DT_DLL_VRVUTIL
DtDeConfiguration
:
public
DtConfiguration
29
{
30
31
public
:
32
34
DtDeConfiguration
(
const
std::string& name =
""
);
35
37
DtDeConfiguration
(
const
DtDeConfiguration
& config);
38
40
DtDeConfiguration
& operator=(
const
DtDeConfiguration
& config);
41
43
virtual
~
DtDeConfiguration
();
44
50
DT_DECLARE_serialize_FUNCTIONS
51
53
54
virtual
DtDisplayConfigurations
& displayConfigurations();
55
virtual
const
DtDisplayConfigurations
& displayConfigurations()
const
;
57
58
59
protected
:
60
61
template
<
class
Archive>
62
void
_serialize(Archive & ar,
const
unsigned
int
version)
63
{
64
ar &
DT_SERIALIZE_BASE
(
DtConfiguration
);
65
ar &
DT_SERIALIZE_MEMBER
(myDisplayConfigurations);
66
}
67
68
DtDisplayConfigurations
myDisplayConfigurations
;
69
};
70
}
71
72
BOOST_CLASS_VERSION
(
makVrv::DtDeConfiguration
,1)
73
74
#endif
75
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)