00001 00022 #ifndef INC_MIE_DATABASE_H 00023 #define INC_MIE_DATABASE_H 00024 00025 #ifndef INC_MIE_JOBBASE_H 00026 #include <mie/jobbase.h> 00027 #endif 00028 00029 00030 00031 namespace MIE { 00032 00033 // ************************************************************************ 00034 00035 // The base class for an individual import/export job 00036 class JOB_DATABASE : public JOB_IMPORT { 00037 public: 00038 JOB_DATABASE ( 00039 const FORMAT& p_format, 00040 const SETTINGS& settings 00041 ); 00042 00043 virtual ~JOB_DATABASE (); 00044 00045 // XXX Fill in stuff here. 00046 00047 private: 00048 }; 00049 00050 } // end of MIE NAMESPACE 00051 00052 #endif
1.6.1