From 3b52ae97c021004928696b93f4d9de8633bae10b Mon Sep 17 00:00:00 2001 From: artemp Date: Fri, 23 Dec 2016 14:42:18 +0100 Subject: [PATCH] add missing header --- include/mapnik/svg/svg_grammar_config_x3.hpp | 47 ++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 include/mapnik/svg/svg_grammar_config_x3.hpp diff --git a/include/mapnik/svg/svg_grammar_config_x3.hpp b/include/mapnik/svg/svg_grammar_config_x3.hpp new file mode 100644 index 000000000..87444b0ca --- /dev/null +++ b/include/mapnik/svg/svg_grammar_config_x3.hpp @@ -0,0 +1,47 @@ +/***************************************************************************** + * + * This file is part of Mapnik (c++ mapping toolkit) + * + * Copyright (C) 2016 Artem Pavlenko + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + *****************************************************************************/ + +#ifndef MAPNIK_SVG_GRAMMAR_CONFIG_X3_HPP +#define MAPNIK_SVG_GRAMMAR_CONFIG_X3_HPP + +#include +#pragma GCC diagnostic push +#include +#include +#pragma GCC diagnostic pop + +namespace mapnik { namespace svg { namespace grammar { + +class relative_tag; +class svg_path_tag; + +namespace x3 = boost::spirit::x3; +using space_type = x3::standard::space_type; +using iterator_type = char const*; + +using phrase_parse_context_type = x3::phrase_parse_context::type; +using svg_parse_context_type = x3::with_context const, + x3::with_context const, + phrase_parse_context_type>::type>::type; +}}} + +#endif // MAPNIK_SVG_GRAMMAR_CONFIG_X3_HPP