diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 16:59:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-11 17:12:50 +0200 |
commit | 82337dec44347017ca04fe975e85e6d9e4edb635 (patch) | |
tree | 308036d4a7abbd2bb04ed472dc1fbacdc2587871 /src/input/InputStream.hxx | |
parent | f1d07002521a4a98acf130127cf42aef20a5e258 (diff) | |
download | mpd-82337dec44347017ca04fe975e85e6d9e4edb635.tar.gz mpd-82337dec44347017ca04fe975e85e6d9e4edb635.tar.xz mpd-82337dec44347017ca04fe975e85e6d9e4edb635.zip |
InputStream: add virtual destructor
Replaces the method Close().
Diffstat (limited to 'src/input/InputStream.hxx')
-rw-r--r-- | src/input/InputStream.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/input/InputStream.hxx b/src/input/InputStream.hxx index 65840ba27..4a9d7832a 100644 --- a/src/input/InputStream.hxx +++ b/src/input/InputStream.hxx @@ -109,6 +109,13 @@ public: } /** + * Close the input stream and free resources. + * + * The caller must not lock the mutex. + */ + virtual ~InputStream(); + + /** * Opens a new input stream. You may not access it until the "ready" * flag is set. * @@ -133,13 +140,6 @@ public: Mutex &mutex, Cond &cond, Error &error); - /** - * Close the input stream and free resources. - * - * The caller must not lock the mutex. - */ - void Close(); - const InputPlugin &GetPlugin() const { return plugin; } |