VR-Forces 4.3.1 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
makArchives
DtApplicationSettingsRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
#include <
makArchives/makArchives.h
>
12
13
namespace
makArchives
14
{
18
class
DT_DLL_MAKARCHIVES
DtApplicationSettingsRecord
19
{
20
public
:
22
DtApplicationSettingsRecord
();
23
25
DtApplicationSettingsRecord
(
const
DtApplicationSettingsRecord
& orig);
26
28
DtApplicationSettingsRecord
& operator=(
const
DtApplicationSettingsRecord
& orig);
29
31
~
DtApplicationSettingsRecord
();
32
34
void
setViewControlEnabled(
bool
enabled);
35
37
bool
viewControlEnabled()
const
;
38
39
protected
:
40
41
friend
class
boost::serialization::access;
42
46
template
<
class
Archive>
47
void
serialize(Archive & ar,
const
unsigned
int
version)
48
{
49
50
ar & BOOST_SERIALIZATION_NVP(myViewControlEnabled);
51
52
}
53
54
bool
myViewControlEnabled
;
55
};
56
}
57
58
BOOST_CLASS_VERSION
(
makArchives::DtApplicationSettingsRecord
, 1)
Document ID: Generated on Wed Jul 29 00:55:00 EDT 2015 from SVN revision 155257
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)