📄 gislauncheritem.h
字号:
#ifndef Amis_GISLauncherItem_h_#define Amis_GISLauncherItem_h_#include <amis/configure.h>#include <amis/EstimatorLauncher.h>#include <amis/Property.h>AMIS_NAMESPACE_BEGINtemplate < class GIS >class GISLauncherItem : public EstimatorLauncherItem {public: GISLauncherItem( const std::string& name, const std::string& event, const std::string& feature, const std::string& desc ) : EstimatorLauncherItem( name, event, feature, desc ) {} EstimatorPtr launch( Property* property ) { GIS* gis = new GIS(); gis->setNumThreads( property->getNumThreads() ); return EstimatorPtr( gis ); }};AMIS_NAMESPACE_END#endif // Amis_GISLauncherItem_h_// end of GISLauncherItem.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -