QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RFileImporter.h
Go to the documentation of this file.
1 #ifndef RFILEIMPORTER_H
2 #define RFILEIMPORTER_H
3 
4 #include "RImporter.h"
5 
6 #include <QString>
7 
8 
9 
18 class RFileImporter : public RImporter {
19 public:
20  RFileImporter();
22  virtual ~RFileImporter();
23 
28  virtual bool importFile(const QString& fileName) = 0;
29 };
30 
32 
33 #endif