VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
vrfutil
realAttribute.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2004 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: realAttribute.h,v $ $Revision: 1.4 $ $State: Exp $
7
*********************************************************************/
8
11
12
#ifndef DtRealAttribute_H_
13
#define DtRealAttribute_H_
14
19
20
#include <vlutil/vlString.h>
21
22
#include "
vrfutil/vrfutilDefines.h
"
23
class
DT_DLL_vrfutil
DtRealAttribute
24
{
25
26
public
:
27
28
DtRealAttribute
();
29
30
DtRealAttribute
(
const
DtString
& key,
double
data);
31
32
virtual
~
DtRealAttribute
();
33
34
DtRealAttribute
(
const
DtRealAttribute
& orig);
35
36
DtRealAttribute
& operator=(
const
DtRealAttribute
& orig);
37
38
bool
operator==
(
const
DtRealAttribute
& rhs)
const
;
39
40
const
DtString
& key()
const
;
41
DtString
& key();
42
void
setKey(
const
DtString
& newKey);
43
44
double
data()
const
;
45
void
setData(
double
newData);
46
47
protected
:
48
DtString
myKey
;
49
double
myData
;
50
};
51
52
53
#endif
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
)