mirror of
https://github.com/boostorg/parser.git
synced 2026-02-13 12:42:10 +00:00
18 lines
483 B
C++
18 lines
483 B
C++
/**
|
|
* Copyright (C) 2010, 2011 Object Modeling Designs
|
|
*/
|
|
|
|
#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::parser::unicode_string<iterator_type>;
|
|
template struct omd::parser::scalar<iterator_type>;
|