VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
readerWriter
stringAttribute.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2004 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
8
9
#ifndef DtStringAttribute_H_
10
#define DtStringAttribute_H_
11
12
#include <vlutil/vlString.h>
13
18
19
#include "
readerWriter/readerWriterDefines.h
"
20
class
DT_DLL_readerWriter
DtStringAttribute
21
{
22
23
public
:
24
25
DtStringAttribute
();
26
27
DtStringAttribute
(
const
DtString
& key,
const
DtString
& data);
28
29
virtual
~
DtStringAttribute
();
30
31
DtStringAttribute
(
const
DtStringAttribute
& orig);
32
33
DtStringAttribute
& operator=(
const
DtStringAttribute
& orig);
34
35
bool
operator==
(
const
DtStringAttribute
& rhs)
const
;
36
37
const
DtString
& key()
const
;
38
DtString
& key();
39
void
setKey(
const
DtString
& newKey);
40
41
const
DtString
& data()
const
;
42
DtString
& data();
43
void
setData(
const
DtString
& newData);
44
45
protected
:
46
DtString
myKey
;
47
DtString
myData
;
48
};
49
50
51
#endif
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)