VR-Forces Development_Version Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
gdb
gdbNodeEvaluationFunctor.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2005 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: gdbNodeEvaluationFunctor.h,v $ $Revision: 1.3 $ $State: Exp $
7
******************************************************************************/
8
#ifndef gdbNodeEvaluationFunctor_H_
9
#define gdbNodeEvaluationFunctor_H_
10
11
//
12
// \file gdbNodeEvaluationFunctor.h
13
// \brief Contains the DtGdbNodeEvaluationFunctor class declaration.
14
//
15
16
class
DtGdbNode
;
17
18
//
19
// \detailed The DtGdbNodeEvaluationFunctor class is intended to be the base
20
// class of a type of functor that is used when querying the DtGdbNode tree
21
// hierarchies for specific nodes. To sort out nodes, or include nodes, based
22
// on specific characteristics, users should derive a new type of functor (or
23
// create a combination of other functors) from this class.
24
// \see DtGdbNode::allInstancesOf()
25
//
26
#include "
gdb/gdbDefines.h
"
27
28
class
DT_DLL_gdb
DtGdbNodeEvaluationFunctor
29
{
30
public
:
31
DtGdbNodeEvaluationFunctor
();
32
33
virtual
~
DtGdbNodeEvaluationFunctor
();
34
35
private
:
36
// Copy constructor and Assignment operator not implemented
37
DtGdbNodeEvaluationFunctor
(
const
DtGdbNodeEvaluationFunctor
& original);
38
const
DtGdbNodeEvaluationFunctor
& operator=(
const
DtGdbNodeEvaluationFunctor
& original);
39
40
public
:
41
42
virtual
bool
operator()(
const
DtGdbNode
& nodeToEvaluate);
43
44
45
protected
:
46
private
:
47
};
48
49
#endif
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)