summaryrefslogtreecommitdiff
path: root/project2/common/pch.hpp
blob: 2feca3c59dd4562e7b72461188d2f9259c79224d (plain)
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
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef COMMON_PCH
#define COMMON_PCH

#include <algorithm>
#include <boost/any.hpp>
#include <boost/bind.hpp>
#include <boost/function/function_fwd.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/variant/variant_fwd.hpp>
#include <glibmm/ustring.h>
#include <intrusivePtrBase.h>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <stdexcept>
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>

#endif
#endif