VR-Forces 4.2 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
examples
exampleDialogPage
DtExampleSettingsRecord.h
Go to the documentation of this file.
1
/*****************************************************************************
2
* Copyright (c) 2012 MAK Technologies, Inc.
3
* All rights reserved.
4
*****************************************************************************/
5
9
10
#pragma once
11
12
#include "
exampleDialogPagePlugin.h
"
13
14
#include <makArchives/makArchives.h>
15
16
#include <vector>
17
18
namespace
makVrv
19
{
20
23
class
DT_DLL_EXAMPLEDIALOGPAGE
DtExampleSettingsRecord
24
{
25
public
:
26
28
DtExampleSettingsRecord
();
29
31
DtExampleSettingsRecord
(
const
DtExampleSettingsRecord
& orig );
32
34
DtExampleSettingsRecord
& operator = (
const
DtExampleSettingsRecord
& orig );
35
37
virtual
~
DtExampleSettingsRecord
();
38
39
virtual
void
setDummyVal(
int
val);
40
41
virtual
int
dummyVal()
const
;
42
43
protected
:
44
45
friend
class
boost::serialization::access;
46
50
template
<
class
Archive>
51
void
serialize(Archive & ar,
const
unsigned
int
version)
52
{
53
ar & BOOST_SERIALIZATION_NVP( myDummyVal );
54
}
55
56
protected
:
57
58
int
myDummyVal
;
59
60
};
61
62
}
63
64
BOOST_CLASS_VERSION
(
makVrv::DtExampleSettingsRecord
, 0 )
Document ID: Generated on Sun Nov 24 19:49:21 EST 2013 from SVN revision 133924
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)