Engauge Digitizer  2
FileCmdExport.h
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #ifndef FILE_CMD_EXPORT_H
8 #define FILE_CMD_EXPORT_H
9 
10 #include "FileCmdAbstract.h"
11 
12 class QXmlStreamReader;
13 
16 {
17 public:
19  FileCmdExport(QXmlStreamReader &reader);
20 
21  virtual ~FileCmdExport();
22 
23  virtual void redo (MainWindow &mainWindow);
24 
25 private:
26  FileCmdExport();
27 
28  QString m_filename;
29 };
30 
31 #endif // FILE_CMD_EXPORT_H
virtual void redo(MainWindow &mainWindow)
Apply this command, through MainWindow.
Base class for 'file commands' that are used specifically for regression testing of file import/open/...
Command for exporting a file.
Definition: FileCmdExport.h:15
Main window consisting of menu, graphics scene, status bar and optional toolbars as a Single Document...
Definition: MainWindow.h:89