VR-Forces Development_Version 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
DtPropSettingsRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtPropSettingsRecord.h,v $ $Revision: 1.5 $ $State: Exp $
7
******************************************************************************/
8
12
13
#ifndef DtPropSettingsRecord_H_
14
#define DtPropSettingsRecord_H_
15
16
#include <
makArchives/DtPropRecord.h
>
17
18
namespace
makArchives
19
{
23
class
DT_DLL_MAKARCHIVES
DtPropSettingsRecord
24
{
25
public
:
26
typedef
std::vector<DtPropRecord>
PropRecords
;
27
29
DtPropSettingsRecord
();
30
32
DtPropSettingsRecord
(
const
PropRecords
& records);
33
35
~
DtPropSettingsRecord
();
36
38
DtPropSettingsRecord
& operator=(
const
DtPropSettingsRecord
& orig);
39
41
const
PropRecords
& records()
const
;
42
PropRecords
& records();
43
44
protected
:
46
47
friend
class
boost::serialization::access;
48
52
template
<
class
Archive>
53
void
serialize(Archive & ar,
const
unsigned
int
version)
54
{
55
ar & BOOST_SERIALIZATION_NVP(myRecords);
56
}
57
58
protected
:
59
PropRecords
myRecords
;
60
};
61
}
62
63
#endif
64
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)