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
gdb
gdbCulturalFeature.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 1999 MaK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: cultFeat.h,v $ $Revision: 1.5 $ $State: Exp $
7
*********************************************************************/
8
9
#ifndef gdbCulturalFeature_H_
10
#define gdbCulturalFeature_H_
11
12
#include "
gdb/gdbDefines.h
"
13
#include "
gdb/feature.h
"
14
15
// class DtGdbCulturalFeature:
16
//
17
// DtGdbCulturalFeature is subclassed from DtFeature and is
18
// used to represent structures that are static and
19
// sit atop the terrain, such as, buildings, bridges, trees,
20
// etc.
21
22
class
DT_DLL_gdb
DtGdbCulturalFeature
:
public
DtFeature
23
{
24
public
:
25
26
// default constructor
27
DtGdbCulturalFeature
();
28
29
// destructor
30
virtual
~
DtGdbCulturalFeature
();
31
32
// copy constructor
33
DtGdbCulturalFeature
(
const
DtGdbCulturalFeature
& orig);
34
35
// assignment operator
36
DtGdbCulturalFeature
&
operator=
(
const
DtGdbCulturalFeature
& orig);
37
38
// return the type of Gdb Node the object is
39
virtual
DtGdbNode::DtGdbNodeType
type
()
const
;
40
41
// prints out the contents of the object
42
virtual
void
dump
(
int
indentLevel)
const
;
43
44
protected
:
45
46
};
47
48
inline
DtGdbNode::DtGdbNodeType
DtGdbCulturalFeature::type
()
const
49
{
50
return
(
DtGdbNode::CULTURAL_FEATURE
);
51
}
52
53
#endif
54
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
)