VR-Forces 4.6 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
makArchives
DtApplicationSettingsRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2017 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
#include <
makArchives/makArchives.h
>
12
13
14
namespace
makArchives
15
{
19
class
DT_DLL_MAKARCHIVES
DtApplicationSettingsRecord
20
{
21
public
:
23
DtApplicationSettingsRecord
();
24
26
DtApplicationSettingsRecord
(
const
DtApplicationSettingsRecord
& orig);
27
29
DtApplicationSettingsRecord
& operator=(
const
DtApplicationSettingsRecord
& orig);
30
32
~
DtApplicationSettingsRecord
();
33
35
void
setViewControlEnabled(
bool
enabled);
36
38
bool
viewControlEnabled()
const
;
39
41
void
setScreenCaptureFilePath(
const
std::string& filePath);
42
44
const
std::string& screenCaptureFilePath()
const
;
45
46
47
protected
:
48
49
friend
class
boost::serialization::access;
50
54
template
<
class
Archive>
55
void
serialize(Archive & ar,
const
unsigned
int
version)
56
{
57
58
ar & BOOST_SERIALIZATION_NVP(myViewControlEnabled);
59
ar & BOOST_SERIALIZATION_NVP(myScreenCaptureFilePath);
60
}
61
62
bool
myViewControlEnabled
;
63
64
std::string
myScreenCaptureFilePath
;
65
};
66
}
67
68
BOOST_CLASS_VERSION
(
makArchives::DtApplicationSettingsRecord
, 2)
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)