kicad/thirdparty/pegtl/pegtl.hpp

50 lines
1.3 KiB
C++
Raw Normal View History

2022-01-10 23:22:23 +00:00
// Copyright (c) 2014-2021 Dr. Colin Hirsch and Daniel Frey
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
#ifndef TAO_PEGTL_HPP
#define TAO_PEGTL_HPP
2022-01-10 23:22:23 +00:00
#include "pegtl/config.hpp"
#include "pegtl/demangle.hpp"
#include "pegtl/parse.hpp"
#include "pegtl/version.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/ascii.hpp"
#include "pegtl/rules.hpp"
#include "pegtl/utf8.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/argv_input.hpp"
#include "pegtl/buffer_input.hpp"
#include "pegtl/cstream_input.hpp"
#include "pegtl/istream_input.hpp"
#include "pegtl/memory_input.hpp"
#include "pegtl/read_input.hpp"
#include "pegtl/string_input.hpp"
2022-01-10 23:22:23 +00:00
// This has to be included *after* the above inputs,
// otherwise the amalgamated header will not work!
#include "pegtl/file_input.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/change_action.hpp"
#include "pegtl/change_action_and_state.hpp"
#include "pegtl/change_action_and_states.hpp"
#include "pegtl/change_control.hpp"
#include "pegtl/change_state.hpp"
#include "pegtl/change_states.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/disable_action.hpp"
#include "pegtl/enable_action.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/discard_input.hpp"
#include "pegtl/discard_input_on_failure.hpp"
#include "pegtl/discard_input_on_success.hpp"
2022-01-10 23:22:23 +00:00
#include "pegtl/visit.hpp"
2022-01-10 23:22:23 +00:00
#if defined( __cpp_exceptions )
#include "pegtl/must_if.hpp"
#endif
#endif