VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
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/makArchives.h
>
17
#include <
makArchives/DtPropRecord.h
>
18
19
namespace
makArchives
20
{
24
class
DT_DLL_MAKARCHIVES
DtPropSettingsRecord
25
{
26
public
:
27
typedef
std::vector<DtPropRecord>
PropRecords
;
28
30
DtPropSettingsRecord
();
31
33
DtPropSettingsRecord
(
const
PropRecords
& records);
34
36
~
DtPropSettingsRecord
();
37
39
DtPropSettingsRecord
& operator=(
const
DtPropSettingsRecord
& orig);
40
42
const
PropRecords
& records()
const
;
43
PropRecords
& records();
44
45
protected
:
47
48
friend
class
boost::serialization::access;
49
53
template
<
class
Archive>
54
void
serialize(Archive & ar,
const
unsigned
int
version)
55
{
56
ar & BOOST_SERIALIZATION_NVP(myRecords);
57
}
58
59
protected
:
60
PropRecords
myRecords
;
61
};
62
}
63
64
#endif
65
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
)