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
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 Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)