diff options
author | Max Kellermann <max@duempel.org> | 2014-07-30 19:10:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-07-30 22:12:02 +0200 |
commit | 0d0ccacdf3e154b1cc27a0840fce80ac13f9641c (patch) | |
tree | 75d25911d85f6c32e9206c2e713cc864728aad6a /src/fs/output/OutputStream.hxx | |
parent | c8858f85d8366e36c588b1dcc7ef7eff40832dd0 (diff) | |
download | mpd-0d0ccacdf3e154b1cc27a0840fce80ac13f9641c.tar.gz mpd-0d0ccacdf3e154b1cc27a0840fce80ac13f9641c.tar.xz mpd-0d0ccacdf3e154b1cc27a0840fce80ac13f9641c.zip |
fs/OutputStream: new infrastructure for writing to files
Diffstat (limited to 'src/fs/output/OutputStream.hxx')
-rw-r--r-- | src/fs/output/OutputStream.hxx | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/fs/output/OutputStream.hxx b/src/fs/output/OutputStream.hxx new file mode 100644 index 000000000..71311c71f --- /dev/null +++ b/src/fs/output/OutputStream.hxx @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2003-2014 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_OUTPUT_STREAM_HXX +#define MPD_OUTPUT_STREAM_HXX + +#include "check.h" +#include "Compiler.h" + +#include <stddef.h> + +class Error; + +class OutputStream { +public: + OutputStream() = default; + OutputStream(const OutputStream &) = delete; + + virtual bool Write(const void *data, size_t size, Error &error) = 0; +}; + +#endif |