add missing header
This commit is contained in:
parent
95cc560167
commit
3b52ae97c0
1 changed files with 47 additions and 0 deletions
47
include/mapnik/svg/svg_grammar_config_x3.hpp
Normal file
47
include/mapnik/svg/svg_grammar_config_x3.hpp
Normal file
|
@ -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 <mapnik/svg/svg_path_parser.hpp>
|
||||
#pragma GCC diagnostic push
|
||||
#include <mapnik/warning_ignore.hpp>
|
||||
#include <boost/spirit/home/x3.hpp>
|
||||
#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<space_type>::type;
|
||||
using svg_parse_context_type = x3::with_context<relative_tag, std::reference_wrapper<bool> const,
|
||||
x3::with_context<svg_path_tag,std::reference_wrapper<svg_converter_type> const,
|
||||
phrase_parse_context_type>::type>::type;
|
||||
}}}
|
||||
|
||||
#endif // MAPNIK_SVG_GRAMMAR_CONFIG_X3_HPP
|
Loading…
Reference in a new issue