summaryrefslogtreecommitdiff
path: root/netfs/lib/pch.hpp
blob: e5ee5d70d02a90bf820ad91d6336a6ce41a9e44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef NETFS_PCH
#define NETFS_PCH

#include <boost/foreach.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/thread/locks.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/thread/shared_mutex.hpp>
#include <boost/tuple/tuple.hpp>
#include <exception>
#include <Ice/Ice.h>
#include <intrusivePtrBase.h>
#include <map>
#include <set>
#include <string>
#include <typeinfo>

#endif
#endif