summaryrefslogtreecommitdiff
path: root/project2/xml/pch.hpp
blob: 210a49c6f8d82bad8c2361e32fb43b955e63fe84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef XML_PCH
#define XML_PCH

#include <filesystem>
#include <boost/variant/variant_fwd.hpp>
#include <libxml++/document.h>
#include <libxml++/nodes/element.h>
#include <libxml++/nodes/textnode.h>
#include <libxml++/parsers/domparser.h>
#include <set>

#endif
#endif