Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
ExportToFile.h
1 #ifndef EXPORT_TO_FILE_H
2 #define EXPORT_TO_FILE_H
3 
4 #include <QStringList>
5 
6 class Document;
8 class QTextStream;
9 class Transformation;
10 
13 {
14 public:
16  ExportToFile();
17 
20  void exportToFile (const DocumentModelExportFormat &modelExport,
21  const Document &document,
22  const Transformation &transformation,
23  QTextStream &str) const;
24 
25 };
26 
27 #endif // EXPORT_TO_FILE_H
Model for DlgSettingsExportFormat and CmdSettingsExportFormat.
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
Definition: ExportToFile.h:12
Affine transformation between screen and graph coordinates, based on digitized axis points...
void exportToFile(const DocumentModelExportFormat &modelExport, const Document &document, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
Storage of one imported image and the data attached to that image.
Definition: Document.h:29
ExportToFile()
Single constructor.
Definition: ExportToFile.cpp:9