aboutsummaryrefslogtreecommitdiff
path: root/src/istream/stream.h
blob: 0602d0605458d34296544ae36aadd3ef2504f36a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <iostream>
#include <string>
#include <memory>

#include "buffer.h"

namespace dictzip {

class Istream : public std::istream {
private:
	std::shared_ptr<IstreamBuf> buffer_;

public:
	Istream(char const* filename);
	virtual ~Istream() {}

};

}