mirror of
https://github.com/boostorg/parser.git
synced 2026-01-24 18:12:32 +00:00
21 lines
655 B
C++
21 lines
655 B
C++
/**
|
|
* Copyright (C) 2011, 2012 Object Modeling Designs
|
|
*
|
|
* 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)
|
|
*/
|
|
|
|
#include "../yaml/parser/scalar_def.hpp"
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
#include <boost/spirit/include/classic_position_iterator.hpp>
|
|
|
|
typedef std::string::const_iterator base_iterator_type;
|
|
typedef boost::spirit::classic::position_iterator<base_iterator_type>
|
|
iterator_type;
|
|
|
|
template struct omd::yaml::parser::unicode_string<iterator_type>;
|
|
template struct omd::yaml::parser::scalar<iterator_type>;
|