tools/toolskeleton/ortoolskeleton_tool.h
#ifndef __ORTOOL_SKELETON_TOOL_H__
#define __ORTOOL_SKELETON_TOOL_H__
#define ORTOOLSKELETON__CLASSNAME ORToolSkeleton
#define ORTOOLSKELETON__CLASSSTR "ORToolSkeleton"
class ORToolSkeleton : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
private:
FBSystem mSystem;
FBLabel mLabelDirections;
FBButton mButtonCreateSkeleton;
};
#endif