aboutsummaryrefslogtreecommitdiff
path: root/src/istream/stream.cc
blob: aea548f785f51c671d7078207931d2fb50c54d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

#include "stream.h"

namespace dictzip {

Istream::Istream(char const* filename):
	std::istream(0),
	buffer_{ new IstreamBuf(filename) } {
	this->rdbuf(buffer_.get());
}

}