VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
makArchives
DtVisualizerDefinitionAttributeRecord.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2011 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
15
namespace
makArchives
16
{
17
20
class
DT_DLL_MAKARCHIVES
DtVisualizerDefinitionAttributeRecord
21
{
22
public
:
24
DtVisualizerDefinitionAttributeRecord
();
25
27
virtual
~
DtVisualizerDefinitionAttributeRecord
();
28
30
void
setName(
const
Utf8String
& name);
31
35
void
setValue(
const
Utf8String
& val);
36
38
const
Utf8String
& name()
const
;
39
43
const
Utf8String
& value()
const
;
44
45
protected
:
46
friend
class
boost::serialization::access;
47
48
template
<
class
Archive>
49
void
serialize(Archive & ar,
const
unsigned
int
version)
50
{
51
ar & BOOST_SERIALIZATION_NVP(myName);
52
ar & BOOST_SERIALIZATION_NVP(myValue);
53
}
54
55
Utf8String
myValue
;
56
Utf8String
myName
;
57
};
58
}
59
60
BOOST_CLASS_VERSION
(
makArchives::DtVisualizerDefinitionAttributeRecord
, 1)
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
)