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