estimatorlauncher.h

来自「Amis - A maximum entropy estimator 一个最大」· C头文件 代码 · 共 37 行

H
37
字号
#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 + =
减小字号Ctrl + -
显示快捷键?