summaryrefslogtreecommitdiff
path: root/project2/xml/pch.hpp
blob: 453f8ccf37731be17464ce5a73ba2dc1f764315e (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
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef XML_PCH
#define XML_PCH

#include "cache.h"
#include "exceptions.h"
#include "iHaveParameters.h"
#include "logger.h"
#include "presenter.h"
#include "rowProcessor.h"
#include "safeMapFind.h"
#include "variables.h"
#include <boost/filesystem/path.hpp>
#include <boost/foreach.hpp>
#include "options.h"
#include <libxml++/document.h>
#include <libxml++/nodes/element.h>
#include <libxml++/nodes/textnode.h>
#include <libxml++/parsers/domparser.h>
#include <set>

#endif
#endif