forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathstdafx.h
More file actions
33 lines (28 loc) · 679 Bytes
/
stdafx.h
File metadata and controls
33 lines (28 loc) · 679 Bytes
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
#pragma once
#ifdef _MSC_VER
// warning C4503: '__LINE__Var': decorated name length exceeded, name was truncated
#pragma warning(disable: 4503)
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <limits.h>
#include <algorithm>
#include <list>
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include <boost/function.hpp>
#include <boost/foreach.hpp>
#include <boost/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/shared_ptr.hpp>
#include "uint256.h"
#include "streams.h"
#include "serialize.h"
#include "base58.h"