📄 estimatorlauncher.h
字号:
#ifndef Amis_EstimatorLauncher_h_#define Amis_EstimatorLauncher_h_#include <amis/configure.h>#include <amis/Launcher.h>#include <amis/LauncherItem.h>#include <amis/Estimator.h>#include <amis/Utility.h>AMIS_NAMESPACE_BEGINclass Property;class EstimatorLauncher : public Launcher< EstimatorPtr, Property*, StringTriple > {private: static Initializer< Launcher< EstimatorPtr, Property*, StringTriple >* >* queue;public: EstimatorLauncher( void ) : Launcher< EstimatorPtr, Property*, StringTriple >( "EstimatorLauncher", queue ) {} virtual ~EstimatorLauncher() {} friend class EstimatorLauncherItem;};class EstimatorLauncherItem : public LauncherItem< EstimatorPtr, Property*, StringTriple > {public: EstimatorLauncherItem( const std::string& name, const std::string& event, const std::string& feature, const std::string& desc = "" ) : LauncherItem< EstimatorPtr, Property*, StringTriple >( EstimatorLauncher::queue, StringTriple( name, event, feature ), desc ) {} virtual ~EstimatorLauncherItem() {}};AMIS_NAMESPACE_END#endif // Amis_EstimatorLauncher_h_// end of EstimatorLauncher.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -