Engauge Digitizer  2
DocumentHashGenerator.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 DOCUMENT_HASH_GENERATOR_H
8 #define DOCUMENT_HASH_GENERATOR_H
9 
10 #include "DocumentHash.h"
11 
12 class Document;
13 
16 {
17  public:
20 
22  DocumentHash generate (const Document &document) const;
23 
24 };
25 
26 #endif // DOCUMENT_HASH_GENERATOR_H
Generates a DocumentHash value representing the state of the entire Document.
DocumentHash generate(const Document &document) const
Generate the hash for external storage.
Storage of one imported image and the data attached to that image.
Definition: Document.h:41
DocumentHashGenerator()
Single constructor.