]> git.lyx.org Git - lyx.git/blob - src/support/checksum.h
Let paragraph::requestSpellcheck() consider contained insets
[lyx.git] / src / support / checksum.h
1 // -*- C++ -*-
2 /**
3  * \file checksum.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Yuriy Skalko
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_CHECKSUM_H
13 #define LYX_CHECKSUM_H
14
15 #include <fstream>
16 #include <string>
17
18 namespace lyx {
19
20 namespace support {
21
22 unsigned long checksum(std::string const & s);
23 unsigned long checksum(std::ifstream & ifs);
24 unsigned long checksum(unsigned char const * beg, unsigned char const * end);
25
26 } // namespace support
27
28 } // namespace lyx
29
30 #endif // LYX_CHECKSUM_H