VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
gdb
terFeat.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 1999 MaK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: terFeat.h,v $ $Revision: 1.4 $ $State: Exp $
7
*********************************************************************/
8
9
#ifndef terFeat_H_
10
#define terFeat_H_
11
12
#include "
gdb/gdbDefines.h
"
13
#include "
gdb/feature.h
"
14
#include "
gdb/gdbNode.h
"
15
16
// class DtTerrainFeature:
17
//
18
// Instances of DtTerrainFeature are
19
20
class
DT_DLL_gdb
DtTerrainFeature
:
public
DtFeature
21
{
22
public
:
23
24
// default constructor
25
DtTerrainFeature
();
26
27
// destructor
28
virtual
~
DtTerrainFeature
();
29
30
// copy constructor
31
DtTerrainFeature
(
const
DtTerrainFeature
& orig);
32
33
// assignment operator
34
DtTerrainFeature
&
operator=
(
const
DtTerrainFeature
& orig);
35
36
// return the type of Gdb Node the object is
37
virtual
DtGdbNode::DtGdbNodeType
type
()
const
;
38
39
// prints out the contents of the object
40
virtual
void
dump
(
int
indentLevel)
const
;
41
42
protected
:
43
44
};
45
46
inline
DtGdbNode::DtGdbNodeType
DtTerrainFeature::type
()
const
47
{
48
return
(
DtGdbNode::TERRAIN_FEATURE
);
49
}
50
51
#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
)