Updated German translation
[dasher.git] / Src / Common / Common.h
blob6a96ada60ad245fd3c4a7869e7fbdb0ddcd51171
1 // Common.h
2 //
3 /////////////////////////////////////////////////////////////////////////////
4 //
5 // Copyright (c) 2004 David Ward
6 //
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef __Common_h__
10 #define __Common_h__
12 // Place common includes here - to be include by every .cpp file before its header
13 // - can be used for precompiled headers
14 // - also when order of headers is important
16 /////////////////////////////////////////////////////////////////////////////
18 #if HAVE_CONFIG_H
19 #include <config.h>
20 #endif
22 /////////////////////////////////////////////////////////////////////////////
24 #ifdef _WIN32
25 #include "MSVC_Unannoy.h"
27 #if _MSC_VER < 1300
28 #include "Platform/stdminmax.h"
29 #endif
31 #endif
33 #ifndef HAVE_ROUND
34 #include "round.h"
35 #endif
37 #include "myassert.h"
39 #include "mydebug.h"
41 #include "Trace.h"
43 #include "I18n.h"
45 #endif // __include__