modelformatlauncher.h
来自「Amis - A maximum entropy estimator 一个最大」· C头文件 代码 · 共 36 行
H
36 行
#ifndef Amis_ModelFormatLauncher_h_#define Amis_ModelFormatLauncher_h_#include "amis/Launcher.h"#include "amis/LauncherItem.h"#include "amis/ModelFormat.h"AMIS_NAMESPACE_BEGINclass Property;class ModelFormatLauncher : public Launcher< ModelFormatPtr, Property* > {private: static Initializer< Launcher< ModelFormatPtr, Property* >* >* queue;public: ModelFormatLauncher( void ) : Launcher< ModelFormatPtr, Property* >( "ModelFormatLauncher", queue ) {} virtual ~ModelFormatLauncher() {} friend class ModelFormatLauncherItem;};class ModelFormatLauncherItem : public LauncherItem< ModelFormatPtr, Property* > {public: ModelFormatLauncherItem( const std::string& n, const std::string& desc = "" ) : LauncherItem< ModelFormatPtr, Property* >( ModelFormatLauncher::queue, n, desc ) {} virtual ~ModelFormatLauncherItem() {} ModelFormatPtr launch( Property* property ) = 0;};AMIS_NAMESPACE_END#endif // Amis_ModelLauncher_h_// end of ModelFormatLauncher.h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?