Writing: finished (hopefully) part about quick convergency.
[fic.git] / headers.h
blob4ca6d749469414e33736ac1faa6e31e0484e0a72
1 #ifdef QT_NO_DEBUG
2 #define NDEBUG
3 #endif
5 /** Standard C++ includes */
6 #include <algorithm>
7 #include <cmath>
8 #include <cstring> // memcpy
9 #include <exception>
10 #include <fstream>
11 #include <functional>
12 #include <limits> // numeric_limits
13 #include <memory>
14 #include <sstream> // c++ conversions through streams
15 #include <vector>
17 #include "FerrisLoki/static_check.h"
19 /** Qt forwards */
20 class QImage;
21 class QGroupBox;
22 class QTreeWidgetItem;
23 class QWidget;
24 #ifndef NDEBUG
25 class QPixmap;
26 class QPoint;
27 #endif
29 typedef unsigned char Uchar;
30 typedef unsigned short Uint16;
31 typedef unsigned int Uint32;