Engauge Digitizer  2
DocumentScrub.h
Go to the documentation of this file.
1 /******************************************************************************************************
2  * (C) 2018 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 DOCUMENT_SCRUB_H
8 #define DOCUMENT_SCRUB_H
9 
10 class Document;
11 class MainWindow;
12 
16 {
17 public:
19  DocumentScrub ();
20 
22  void check (MainWindow &mainWindow,
23  const Document &document) const;
24 
25 private:
26 
27 };
28 
29 #endif // DOCUMENT_SCRUB_H
Check Document state.
Definition: DocumentScrub.h:15
Storage of one imported image and the data attached to that image.
Definition: Document.h:41
void check(MainWindow &mainWindow, const Document &document) const
Check document state.
DocumentScrub()
Single constructor.
Main window consisting of menu, graphics scene, status bar and optional toolbars as a Single Document...
Definition: MainWindow.h:91