forked from Public-Mirror/Textractor
11 lines
152 B
C++
11 lines
152 B
C++
#pragma once
|
|
|
|
#include "common.h"
|
|
#include <iostream>
|
|
|
|
template <typename C>
|
|
class BlockMarkupLanguageIterator
|
|
{
|
|
std::istreambuf_iterator<char> it;
|
|
};
|