QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RFileExporterFactory.h
Go to the documentation of this file.
1 #ifndef RFILEEXPORTERFACTORY_H
2 #define RFILEEXPORTERFACTORY_H
3 
4 class RFileExporter;
5 class RDocument;
6 
7 #include <QMetaType>
8 #include <QString>
9 
19 public:
20  virtual QStringList getFilterStrings() = 0;
21  virtual bool canExport(const QString& fileName, const QString& nameFilter = "") = 0;
22  virtual RFileExporter* instantiate(RDocument& document) = 0;
23 };
24 
26 
27 #endif