VR-Forces 4.5 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
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/DtDisplayConfiguration.h
>
17
#include <
makArchives/DtSerialize.h
>
18
19
namespace
makVrv
20
{
21
typedef
DtConfigurationCollection<DtDisplayConfiguration>
DtDisplayConfigurations
;
22
25
class
DT_DLL_VRVUTIL
DtDeConfiguration
:
public
DtConfiguration
26
{
27
28
public
:
29
31
DtDeConfiguration
(
const
std::string& name =
""
);
32
34
DtDeConfiguration
(
const
DtDeConfiguration
& config);
35
37
DtDeConfiguration
& operator=(
const
DtDeConfiguration
& config);
38
40
virtual
~
DtDeConfiguration
();
41
47
DT_DECLARE_serialize_FUNCTIONS
48
50
51
virtual
DtDisplayConfigurations
& displayConfigurations();
52
virtual
const
DtDisplayConfigurations
& displayConfigurations()
const
;
54
55
56
protected
:
57
58
template
<
class
Archive>
59
void
_serialize(Archive & ar,
const
unsigned
int
version)
60
{
61
ar &
DT_SERIALIZE_BASE
(
DtConfiguration
);
62
ar &
DT_SERIALIZE_MEMBER
(myDisplayConfigurations);
63
}
64
65
DtDisplayConfigurations
myDisplayConfigurations
;
66
};
67
}
68
69
BOOST_CLASS_VERSION
(
makVrv::DtDeConfiguration
,1)
70
71
#endif
72
Document ID: Generated on Thu Mar 23 18:54:12 EDT 2017 from SVN revision 174804
Copyright © 2005-2017 VT MÄK. All Rights Reserved (
www.mak.com
)