![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2005 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: gdbNodeEvaluationFunctor.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 ******************************************************************************/ 00008 #ifndef gdbNodeEvaluationFunctor_H_ 00009 #define gdbNodeEvaluationFunctor_H_ 00010 00011 // 00012 // \file gdbNodeEvaluationFunctor.h 00013 // \brief Contains the DtGdbNodeEvaluationFunctor class declaration. 00014 // 00015 00016 class DtGdbNode; 00017 00018 // 00019 // \detailed The DtGdbNodeEvaluationFunctor class is intended to be the base 00020 // class of a type of functor that is used when querying the DtGdbNode tree 00021 // hierarchies for specific nodes. To sort out nodes, or include nodes, based 00022 // on specific characteristics, users should derive a new type of functor (or 00023 // create a combination of other functors) from this class. 00024 // \see DtGdbNode::allInstancesOf() 00025 // 00026 #include "gdb/gdbDefines.h" 00027 00028 class DT_DLL_gdb DtGdbNodeEvaluationFunctor 00029 { 00030 public: 00031 DtGdbNodeEvaluationFunctor(); 00032 00033 virtual ~DtGdbNodeEvaluationFunctor(); 00034 00035 private: 00036 // Copy constructor and Assignment operator not implemented 00037 DtGdbNodeEvaluationFunctor(const DtGdbNodeEvaluationFunctor& original); 00038 const DtGdbNodeEvaluationFunctor& operator=(const DtGdbNodeEvaluationFunctor& original); 00039 00040 public: 00041 00042 virtual bool operator()(const DtGdbNode& nodeToEvaluate); 00043 00044 00045 protected: 00046 private: 00047 }; 00048 00049 #endif