blob: 44e5cb1809157bde1313eb72b8d6cbfe37ee08b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*=============================================================================
Copyright (c) 2019 Nikita Kniazev
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifdef BOOST_BUILD_PCH_ENABLED
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/support_argument.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/optional.hpp>
#include <boost/variant.hpp>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <sstream>
#include <iostream>
#endif
|