Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
canimport.h
Go to the documentation of this file.
1 
8 #ifndef CANIMPORT_H_
9 #define CANIMPORT_H_
10 
11 #include "import/import.h"
12 
13 class CAArchive;
14 
15 class CACanImport : public CAImport {
16 public:
17  CACanImport( QTextStream *stream=0 );
18  ~CACanImport();
19 
20  inline CAArchive *archive() { return _archive; }
21  inline void setArchive( CAArchive *a ) { _archive = a; }
22 
23 protected:
25 
26 private:
28 };
29 
30 #endif /* CANIMPORT_H_ */
Class for the manipulation of a gzipped tar archive (tar.gz)
Definition: archive.h:18
QTextStream * stream()
Definition: file.h:33
Definition: canimport.h:15
Class which represents the current document.
Definition: document.h:19
Base class for import filters.
Definition: import.h:20
CAArchive * archive()
Definition: canimport.h:20
void setArchive(CAArchive *a)
Definition: canimport.h:21
~CACanImport()
Definition: canimport.cpp:25
CAArchive * _archive
Definition: canimport.h:27
CADocument * importDocumentImpl()
Definition: canimport.cpp:28
CACanImport(QTextStream *stream=0)
Definition: canimport.cpp:21