Reimplemented things working with summed pixels, other fixes.
[fic.git] / headers.h
blob9f82266d11117d982e7b4854c28ce4adc1c8a662
1 #ifdef QT_NO_DEBUG
2 #define NDEBUG
3 #endif
5 /* Standard C++ includes */
6 #include <algorithm>
7 #include <cmath>
8 //#include <cstdlib> // size_t
9 #include <cstring> // memcpy
10 #include <exception>
11 #include <fstream>
12 #include <functional>
13 #include <limits> // numeric_limits
14 #include <memory>
15 #include <sstream> // c++ conversions through streams
16 #include <typeinfo>
17 #include <vector>
19 #include "FerrisLoki/static_check.h"
21 /* Qt forwards */
22 class QImage;
23 class QGroupBox;
24 class QTreeWidgetItem;
25 class QWidget;
26 #ifndef NDEBUG
27 class QPixmap;
28 class QPoint;
29 #endif
31 typedef unsigned char Uchar;
32 typedef unsigned short Uint16;
33 typedef unsigned int Uint32;
34 typedef ptrdiff_t PtrInt;
35 typedef size_t Uint;