summaryrefslogtreecommitdiff
path: root/contrib/header-only.hpp
blob: 1af8d4ce78aec053a2f9dd4bb7c558af58c75651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Header-only variant of pugixml.
 * This file is provided to the public domain.
 * Written by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
 */

#ifndef HEADER_PUGIXML_HEADER_ONLY_HPP
#define HEADER_PUGIXML_HEADER_ONLY_HPP

/*
 * This file provides a header-only variant of pugixml.
 * This is generally not recommended because of resulting code bloat/increased link time/conflicts with local symbols,
 * so use it with caution.
 */

#include "pugixml.cpp"
#include "pugixpath.cpp"

#endif