importexport/impexpsample/orimpexpsample_tool.h
#ifndef __ORIMPEXP_SAMPLE_TOOL_H__
#define __ORIMPEXP_SAMPLE_TOOL_H__
#define ORTOOLSAMPLE__CLASSNAME ORToolSample
#define ORTOOLSAMPLE__CLASSSTR "ORToolSample"
class ORToolSample : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
void UICreate ();
void UIConfigure ();
void ExportStart ();
void ExportStop ();
void ExportCurrent ();
void ExportCurrentAndStep();
private:
FBEdit mEditExportFile;
FBEditNumber mEditNumberRate;
FBButton mButtonExport;
private:
FBCriticalSection mCriticalSection;
FBSystem mSystem;
bool mExporting;
bool mFileOpen;
FBTime mExportPeriod;
FBPlayerControl mPlayerControl;
FBTime mOriginalTime;
};
#endif