00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef DOCUMENT_HASH_GENERATOR_H 00008 #define DOCUMENT_HASH_GENERATOR_H 00009 00010 #include "DocumentHash.h" 00011 00012 class Document; 00013 00015 class DocumentHashGenerator 00016 { 00017 public: 00019 DocumentHashGenerator (); 00020 00022 DocumentHash generate (const Document &document) const; 00023 00024 }; 00025 00026 #endif // DOCUMENT_HASH_GENERATOR_H