![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2012 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00011 00012 #pragma once 00013 00014 #include "vrfobjparam/laserGuidedLauncherDesc.h" 00015 #include "vrfobjparam/targetSelectCriteria.h" 00016 00020 class DT_DLL_vrfobjparam DtIntegratedLaserGuidedLauncherDescriptor : public DtLaserGuidedLauncherControllerDescriptor 00021 { 00022 public: 00024 DtIntegratedLaserGuidedLauncherDescriptor(const DtString& name, 00025 DtReaderWriterRegistry* parentRegistry = NULL); 00026 00028 DtIntegratedLaserGuidedLauncherDescriptor( 00029 const DtIntegratedLaserGuidedLauncherDescriptor& orig, 00030 DtReaderWriterRegistry* parentRegistry = NULL); 00031 00033 DtIntegratedLaserGuidedLauncherDescriptor& operator=(const 00034 DtIntegratedLaserGuidedLauncherDescriptor& orig); 00035 00037 virtual ~DtIntegratedLaserGuidedLauncherDescriptor(); 00038 00041 virtual DtString type() const; 00042 00043 virtual DtComponentDescriptor* clone( 00044 DtReaderWriterRegistry* parentRegistry) const; 00045 00047 00048 virtual DtTargetSelectionCriteria& targetSelectionCriteria(); 00049 virtual const DtTargetSelectionCriteria& targetSelectionCriteria() const; 00051 00053 static DtComponentDescriptor* creator(); 00054 00055 protected: 00057 DtIntegratedLaserGuidedLauncherDescriptor(); 00058 00059 protected: 00060 00066 DtTargetSelectionCriteria myTargetSelectionCriteria; 00068 00069 }; 00070