forked from celguar/mangos-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpchdef.h
37 lines (35 loc) · 795 Bytes
/
pchdef.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// add here most rarely modified headers to speed up debug build compilation
#ifndef PCHDEF_H
#define PCHDEF_H
#include "Platform/Define.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <cmath>
#include <errno.h>
#include <signal.h>
#include <assert.h>
#include <set>
#include <list>
#include <string>
#include <map>
#include <queue>
#include <sstream>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
#include <chrono>
#include "Errors.h"
#include "Threading.h"
#include <thread>
#include <boost/asio.hpp>
#include "Common.h"
#include "Log.h"
#include "ByteBuffer.h"
#include "ProgressBar.h"
#include "WorldPacket.h"
#include "Config/Config.h"
#include "Database/DatabaseEnv.h"
#include "Database/SQLStorage.h"
#endif // PCHDEF_H