aboutsummaryrefslogtreecommitdiffstats
path: root/src/ArchiveFile.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-23 22:08:59 +0200
committerMax Kellermann <max@duempel.org>2013-10-23 23:12:02 +0200
commit93deb844996120b6326345d6d87e803142dd1968 (patch)
treed6c00669efffad1b15fc45e03158d6838a7e5827 /src/ArchiveFile.hxx
parentc4d4011c63808a64ca20a4b03fd455a83c23cc33 (diff)
downloadmpd-93deb844996120b6326345d6d87e803142dd1968.tar.gz
mpd-93deb844996120b6326345d6d87e803142dd1968.tar.xz
mpd-93deb844996120b6326345d6d87e803142dd1968.zip
input_stream: rename struct to InputStream
Diffstat (limited to 'src/ArchiveFile.hxx')
-rw-r--r--src/ArchiveFile.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ArchiveFile.hxx b/src/ArchiveFile.hxx
index b771409b7..4bdba62ab 100644
--- a/src/ArchiveFile.hxx
+++ b/src/ArchiveFile.hxx
@@ -46,13 +46,13 @@ public:
virtual void Visit(ArchiveVisitor &visitor) = 0;
/**
- * Opens an input_stream of a file within the archive.
+ * Opens an InputStream of a file within the archive.
*
* @param path the path within the archive
*/
- virtual input_stream *OpenStream(const char *path,
- Mutex &mutex, Cond &cond,
- Error &error) = 0;
+ virtual InputStream *OpenStream(const char *path,
+ Mutex &mutex, Cond &cond,
+ Error &error) = 0;
};
#endif