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