QCAD
Open Source 2D CAD
RFileExporterFactory.h
Go to the documentation of this file.
1 
20 #ifndef RFILEEXPORTERFACTORY_H
21 #define RFILEEXPORTERFACTORY_H
22 
23 #include "core_global.h"
24 
25 class RDocument;
26 class RFileExporter;
27 class RMessageHandler;
28 class RProgressHandler;
29 
30 #include <QMetaType>
31 #include <QString>
32 
42 public:
43  virtual ~RFileExporterFactory() {}
44 
45  virtual QStringList getFilterStrings() = 0;
46  virtual int canExport(const QString& fileName,
47  const QString& nameFilter = "") = 0;
48  virtual RFileExporter* instantiate(RDocument& document,
49  RMessageHandler* messageHandler = NULL,
50  RProgressHandler* progressHandler = NULL) = 0;
51 };
52 
54 
55 #endif
RMessageHandler
Copyright (c) 2011-2018 by Andrew Mustun.
Definition: RMessageHandler.h:33
RFileExporterFactory::canExport
virtual int canExport(const QString &fileName, const QString &nameFilter="")=0
RProgressHandler
Copyright (c) 2011-2018 by Andrew Mustun.
Definition: RProgressHandler.h:33
RFileExporter
Base class for file exporters.
Definition: RFileExporter.h:42
Q_DECLARE_METATYPE
Q_DECLARE_METATYPE(RMath *)
RFileExporterFactory
Needs to be implemented by RFileExporter implementations to check if the exporter is suitable to expo...
Definition: RFileExporterFactory.h:41
core_global.h
RDocument
A graphics document contains and owns entities, layers, user coordinate systems, variables,...
Definition: RDocument.h:72
RFileExporterFactory::~RFileExporterFactory
virtual ~RFileExporterFactory()
Definition: RFileExporterFactory.h:43
RFileExporterFactory::getFilterStrings
virtual QStringList getFilterStrings()=0
RFileExporterFactory::instantiate
virtual RFileExporter * instantiate(RDocument &document, RMessageHandler *messageHandler=NULL, RProgressHandler *progressHandler=NULL)=0
QCADCORE_EXPORT
#define QCADCORE_EXPORT
Definition: core_global.h:10