importexport/impexpcamera/orimpexpcamera_file.h
#ifndef __ORIMPEXP_CAMERA_FILE_H__
#define __ORIMPEXP_CAMERA_FILE_H__
class ORExportFile
{
public:
ORExportFile() { mTabCount = 0; mFile =
NULL; }
~ORExportFile() { Close(); }
void Open(char* pFilename ) { mFile = fopen( pFilename, "wt" ); }
void Close() { if( mFile ) fclose( mFile ); }
void SectionOpen ( const char* pSectionHeader );
void SectionClose( );
private:
int mTabCount;
};
#endif