QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RFileExporter.h
Go to the documentation of this file.
1 #ifndef RFILEEXPORTER_H
2 #define RFILEEXPORTER_H
3 
4 #include "RDocument.h"
5 #include "RExporter.h"
6 
7 #include <QString>
8 
9 
10 
19 class RFileExporter : public RExporter {
20 public:
21  RFileExporter();
23  virtual ~RFileExporter();
24 
29  virtual QString getCorrectedFileName(const QString& fileName, const QString& nameFilter) = 0;
30 
35  virtual bool exportFile(const QString& fileName, const QString& nameFilter, bool setFileName = true) = 0;
36 };
37 
39 
40 #endif