From 93deb844996120b6326345d6d87e803142dd1968 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 23 Oct 2013 22:08:59 +0200 Subject: input_stream: rename struct to InputStream --- src/TextInputStream.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/TextInputStream.hxx') diff --git a/src/TextInputStream.hxx b/src/TextInputStream.hxx index f3d87c90a..8d606d5a9 100644 --- a/src/TextInputStream.hxx +++ b/src/TextInputStream.hxx @@ -24,11 +24,11 @@ #include -struct input_stream; +struct InputStream; struct fifo_buffer; class TextInputStream { - struct input_stream *is; + InputStream &is; FifoBuffer buffer; public: @@ -38,7 +38,7 @@ public: * * @param _is an open #input_stream object */ - explicit TextInputStream(struct input_stream *_is) + explicit TextInputStream(InputStream &_is) :is(_is) {} TextInputStream(const TextInputStream &) = delete; -- cgit v1.2.3