Engauge Digitizer 2
Loading...
Searching...
No Matches
FileCmdClose.h
Go to the documentation of this file.
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_CLOSE_H
8#define FILE_CMD_CLOSE_H
9
10#include "FileCmdAbstract.h"
11
12class QXmlStreamReader;
13
16{
17public:
19 FileCmdClose(QXmlStreamReader &reader);
20
21 virtual ~FileCmdClose();
22
23 virtual void redo (MainWindow &mainWindow);
24
25private:
27};
28
29#endif // FILE_CMD_CLOSE_H
FileCmdAbstract(const QString &cmdDescription)
Single constructor.
FileCmdClose(QXmlStreamReader &reader)
Constructor for parsing file script xml.
virtual ~FileCmdClose()
virtual void redo(MainWindow &mainWindow)
Apply this command, through MainWindow.
Main window consisting of menu, graphics scene, status bar and optional toolbars as a Single Document...
Definition MainWindow.h:95