VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrfplanmgr
entIndependentlyTaskedSearch.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2018 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
#pragma once
9
10
#include <vlutil/vlString.h>
11
#include <vlutil/vlMachineTypes.h>
12
#include "
vrfobjcore/simSubordinateSearch.h
"
13
#include <
vrfutil/rwUUID.h
>
14
15
class
DtVrfObject
;
16
23
#include "
vrfplanmgr/vrfplanmgrDefines.h
"
24
class
DT_DLL_vrfplanmgr
DtEntIndependentlyTaskedSearch
:
public
DtSimSubordinateSearch
25
{
26
public
:
27
29
DtEntIndependentlyTaskedSearch
();
30
32
virtual
~
DtEntIndependentlyTaskedSearch
();
33
34
void
setWarnedOnce(
bool
);
35
bool
warnedOnce()
const
;
36
37
protected
:
38
40
virtual
bool
initializeSearch
(
const
DtVrfObjectManager
* vrfObjectManager);
41
43
virtual
bool
inspectEntity
(
const
DtVrfObject
& entity);
44
48
virtual
bool
searchSubordinates
(
49
const
DtVrfObject
& pAggEntity,
bool
excludeDestroyed);
50
51
private
:
53
DtEntIndependentlyTaskedSearch
(
const
DtEntIndependentlyTaskedSearch
& orig);
54
56
DtEntIndependentlyTaskedSearch
&
operator=
(
const
DtEntIndependentlyTaskedSearch
& orig);
57
58
protected
:
59
61
bool
myWarnedOnce
;
62
};
63
64
inline
void
DtEntIndependentlyTaskedSearch::setWarnedOnce
(
bool
b)
65
{
66
myWarnedOnce
= b;
67
}
68
69
inline
bool
DtEntIndependentlyTaskedSearch::warnedOnce
()
const
70
{
71
return
myWarnedOnce
;
72
}
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)