![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2003 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: entLOLineSrch.h,v $ $Revision: 1.8 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00012 #ifndef DtEntLeftOfLineSearch_H_ 00013 #define DtEntLeftOfLineSearch_H_ 00014 00015 #include <vlutil/vlString.h> 00016 #include <vlutil/vlMachineTypes.h> 00017 #include "vrfobjcore/subSearch.h" 00018 00019 00020 class DtSimVrfObject; 00021 00027 #include "vrfplanmgr/vrfplanmgrDefines.h" 00028 class DT_DLL_vrfplanmgr DtEntLeftOfLineSearch : public DtSimSubordinateSearch 00029 { 00030 public: 00031 00033 DtEntLeftOfLineSearch(); 00034 00035 DtEntLeftOfLineSearch(const DtString& lineName); 00036 00038 virtual ~DtEntLeftOfLineSearch(); 00039 00041 virtual const DtString& lineName() const; 00042 00044 virtual void setLineName(const DtString& lineName); 00045 00046 protected: 00047 00050 virtual bool initializeSearch(const DtVrfObjectManager* vrfObjectManager); 00051 00053 virtual bool inspectEntity(const DtVrfObject& entity); 00054 00058 virtual bool searchSubordinates( 00059 const DtVrfObject& pAggEntity); 00060 00061 private: 00063 DtEntLeftOfLineSearch(const DtEntLeftOfLineSearch& orig); 00064 00066 DtEntLeftOfLineSearch& operator=(const DtEntLeftOfLineSearch& orig); 00067 00068 protected: 00069 00071 DtString myLineName; 00072 const DtVrfObject* myPhaseLine; 00073 }; 00074 00075 #endif