![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2005 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: standardPropagatorDesc.h,v $ $Revision: 1.5 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00014 00015 #ifndef standardPropagatorDesc_H_ 00016 #define standardPropagatorDesc_H_ 00017 00018 #include "vrfobjparam/signaturePropagatorDesc.h" 00019 #include "vrfutil/rwBoolean.h" 00020 00023 #include "vrfobjparam/vrfobjparamDefines.h" 00024 class DT_DLL_vrfobjparam DtStandardPropagatorDescriptor : public DtSignaturePropagatorDescriptor 00025 { 00026 public: 00028 DtStandardPropagatorDescriptor(const DtString& name, 00029 DtReaderWriterRegistry* parentRegistry = NULL); 00030 00031 DtStandardPropagatorDescriptor(const DtSymbolString& name, 00032 DtReaderWriterRegistry* parentRegistry = NULL); 00033 00035 DtStandardPropagatorDescriptor(const DtStandardPropagatorDescriptor& orig, 00036 DtReaderWriterRegistry* parentRegistry = NULL); 00037 00039 DtStandardPropagatorDescriptor& operator=( 00040 const DtStandardPropagatorDescriptor& orig); 00041 00042 virtual ~DtStandardPropagatorDescriptor(); 00043 00046 virtual DtString type() const; 00047 00048 virtual DtSignaturePropagatorDescriptor* clone( 00049 DtReaderWriterRegistry* parentRegistry = NULL) const; 00050 00052 static DtSignaturePropagatorDescriptor* creator(); 00053 00056 virtual bool checkLineOfSight() const; 00057 virtual void setCheckLineOfSight(bool yesNo); 00059 00060 private: 00062 DtStandardPropagatorDescriptor(); 00063 00064 protected: 00068 00073 DtRwBoolean myCheckLineOfSight; 00074 00076 }; 00077 00078 #endif 00079 00080 00081