mirror of
https://github.com/boostorg/parser.git
synced 2026-02-01 20:52:11 +00:00
17 lines
421 B
C++
17 lines
421 B
C++
/**
|
|
* Copyright (C) 2010, 2011 Object Modeling Designs
|
|
*/
|
|
|
|
#include "../yaml/parser/block_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::block<iterator_type>;
|