input_stream: rename struct to InputStream

This commit is contained in:
Max Kellermann
2013-10-23 22:08:59 +02:00
parent c4d4011c63
commit 93deb84499
77 changed files with 530 additions and 522 deletions

View File

@@ -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