tools/tool_template/ortool_template_tool.h
#ifndef __ORTOOL_TEMPLATE_TOOL_H__
#define __ORTOOL_TEMPLATE_TOOL_H__
#define ORTOOLTEMPLATE__CLASSNAME ORTool_Template
#define ORTOOLTEMPLATE__CLASSSTR "ORTool_Template"
class ORTool_Template : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
virtual bool FbxStore ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
virtual bool FbxRetrieve ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
private:
private:
FBButton mButtonTest;
int mState;
HdlFBPlugTemplate<FBModel> mHdlModel;
};
#endif