Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
/home/iurt/rpm/BUILD/canorus-0.7.R1002/src/import/canimport.h
Go to the documentation of this file.
00001 
00008 #ifndef CANIMPORT_H_
00009 #define CANIMPORT_H_
00010 
00011 #include "import/import.h"
00012 
00013 class CAArchive;
00014 
00015 class CACanImport : public CAImport {
00016 public:
00017         CACanImport( QTextStream *stream=0 );
00018         ~CACanImport();
00019         
00020         inline CAArchive *archive() { return _archive; }
00021         inline void setArchive( CAArchive *a ) { _archive = a; }
00022         
00023 protected:
00024         CADocument *importDocumentImpl();
00025         
00026 private:
00027         CAArchive *_archive;
00028 };
00029 
00030 #endif /* CANIMPORT_H_ */