![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 1999 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: lod.h,v $ $Revision: 1.4 $ $State: Exp $ 00007 *********************************************************************/ 00008 00009 #ifndef lod_H_ 00010 #define lod_H_ 00011 00012 #include "gdb/gdbDefines.h" 00013 #include "gdb/group.h" 00014 #include "gdb/gdbNode.h" 00015 00016 00017 // class DtLevelOfDetail: 00018 // 00019 // Instances of DtLevelOfDetail are 00020 00021 class DT_DLL_gdb DtLevelOfDetail : public DtGroup 00022 { 00023 public: 00024 00025 // default constructor 00026 DtLevelOfDetail(); 00027 00028 // destructor 00029 virtual ~DtLevelOfDetail(); 00030 00031 // copy constructor 00032 DtLevelOfDetail(const DtLevelOfDetail& orig); 00033 00034 // assignment operator 00035 DtLevelOfDetail& operator=(const DtLevelOfDetail& orig); 00036 00037 // returns the type of gdb node 00038 virtual DtGdbNode::DtGdbNodeType type() const; 00039 00040 // prints out the contents of the object 00041 virtual void dump(int indentLevel) const; 00042 00043 virtual int sizeInBytes() const; 00044 00045 protected: 00046 00047 }; 00048 00049 inline DtGdbNode::DtGdbNodeType DtLevelOfDetail::type() const 00050 { 00051 return(DtGdbNode::LEVEL_OF_DETAIL); 00052 } 00053 00054 #endif