VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
makArchives
DtSurfaceSettingsRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtSurfaceSettingsRecord.h,v $ $Revision: 1.6 $ $State: Exp $
7
******************************************************************************/
8
12
13
#ifndef DtSurfaceSettingsRecord_H_
14
#define DtSurfaceSettingsRecord_H_
15
16
#include <
makArchives/makArchives.h
>
17
#include <map>
18
19
namespace
makArchives
20
{
24
class
DT_DLL_MAKARCHIVES
DtSurfaceSettingsRecord
25
{
26
27
public
:
28
30
DtSurfaceSettingsRecord
();
31
33
DtSurfaceSettingsRecord
(
const
DtSurfaceSettingsRecord
& orig);
34
36
DtSurfaceSettingsRecord
& operator=(
const
DtSurfaceSettingsRecord
& orig);
37
39
~
DtSurfaceSettingsRecord
();
40
42
typedef
std::map<int, bool>
SurfaceVisibleMap
;
43
45
const
SurfaceVisibleMap
& surfaceVisibleMap()
const
;
46
48
void
setSurfaceVisibleMap(
const
SurfaceVisibleMap
& svMap);
49
50
protected
:
51
52
friend
class
boost::serialization::access;
53
57
template
<
class
Archive>
58
void
serialize(Archive & ar,
const
unsigned
int
version)
59
{
60
ar & BOOST_SERIALIZATION_NVP(mySurfaceVisibleMap);
61
}
62
63
64
protected
:
65
66
SurfaceVisibleMap
mySurfaceVisibleMap
;
67
68
69
};
70
}
71
72
#endif
73
Document ID: Generated on Tue Jan 29 18:21:16 EST 2013 from SVN revision 123193
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)