?? 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 + -