📄 modelformatlauncher.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -