Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
canexport.h
Go to the documentation of this file.
1 
8 #ifndef CANEXPORT_H_
9 #define CANEXPORT_H_
10 
11 #include "export/export.h"
12 
13 class CAArchive;
14 
15 class CACanExport : public CAExport {
16 public:
17  CACanExport( QTextStream *stream=0 );
18  ~CACanExport();
19 
20  inline CAArchive *archive() { return _archive; }
21  inline void setArchive( CAArchive *a ) { _archive = a; }
22 
23 protected:
24  void exportDocumentImpl( CADocument* doc );
25 
26 private:
28 };
29 
30 #endif /* CANEXPORT_H_ */