summaryrefslogtreecommitdiff
path: root/project2/common/pch.hpp
blob: 708b437831481f09af356dee441d7fe0bf2a3b30 (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
27
28
29
30
31
32
33
34
35
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef COMMON_PCH
#define COMMON_PCH

#include <algorithm>
#include <boost/bind.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/foreach.hpp>
#include <boost/function.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/program_options.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/variant.hpp>
#include <glibmm/ustring.h>
#include <intrusivePtrBase.h>
#include <iostream>
#include <libxml++/attribute.h>
#include <libxml++/nodes/element.h>
#include <libxml++/nodes/textnode.h>
#include <list>
#include <map>
#include <set>
#include <stdexcept>
#include <stdio.h>
#include <string.h>
#include <string>
#include <vector>
#include "xmlStorage.h"
#include "xmlObjectLoader.h"
#include "variables.h"
#include "sourceObject.h"

#endif
#endif