00001
00032 #ifndef LL_LINDEN_COMMON_H
00033 #define LL_LINDEN_COMMON_H
00034
00035 #include "llpreprocessor.h"
00036
00037 #include <cstring>
00038 #include <cfloat>
00039 #include <climits>
00040 #include <cmath>
00041 #include <cstdarg>
00042 #include <cstdio>
00043 #include <cstdlib>
00044 #include <ctime>
00045 #include <iostream>
00046 #include <fstream>
00047
00048
00049 #ifdef LL_WINDOWS
00050 #pragma warning (disable : 4702) // warning C4702: unreachable code
00051 #endif // LL_WINDOWS
00052
00053 #include <algorithm>
00054 #include <list>
00055 #include <map>
00056 #include <vector>
00057 #include <string>
00058
00059 #ifdef LL_WINDOWS
00060 #pragma warning (3 : 4702) // we like level 3, not 4
00061 #endif // LL_WINDOWS
00062
00063
00064 #include "stdtypes.h"
00065 #include "lldefs.h"
00066 #include "llerror.h"
00067 #include "llextendedstatus.h"
00068 #include "llfasttimer.h"
00069 #include "llfile.h"
00070 #include "llformat.h"
00071 #include "llstring.h"
00072 #include "llsys.h"
00073 #include "lltimer.h"
00074
00075 #endif