VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
makArchives
DtSensorSetRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2012 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
7
8
#pragma once
9
10
#include <
makArchives/makArchives.h
>
11
#include <
makArchives/DtSerialize.h
>
12
#include <
makArchives/DtXmlFileIo.h
>
13
#include <
makArchives/UnicodeStringRecord.h
>
14
#include <
makArchives/DtSensorRecord.h
>
15
16
namespace
makArchives
17
{
19
class
DT_DLL_MAKARCHIVES
DtSensorSetRecord
20
{
21
public
:
23
DtSensorSetRecord
();
24
26
DtSensorSetRecord
(
const
DtSensorSetRecord
& obj);
27
29
DtSensorSetRecord
& operator=(
const
DtSensorSetRecord
& rhs);
30
32
typedef
std::vector<DtSensorRecord>
SensorRecords
;
33
35
void
setSensors(
const
SensorRecords
& recs);
36
38
const
SensorRecords
& sensors()
const
;
39
protected
:
40
friend
class
boost::serialization::access;
41
42
template
<
class
Archive>
43
void
serialize(Archive& ar,
const
unsigned
int
version)
44
{
45
ar & BOOST_SERIALIZATION_NVP(mySensors);
46
}
47
48
SensorRecords
mySensors
;
49
};
50
}
51
BOOST_CLASS_VERSION
(
makArchives::DtSensorSetRecord
, 1)
52
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
)