Possible fix for coverity #29375
[supertux.git] / src / physfs / buffered_ofile_stream.hpp
diff --git a/src/physfs/buffered_ofile_stream.hpp b/src/physfs/buffered_ofile_stream.hpp
new file mode 100644 (file)
index 0000000..9b4fea5
--- /dev/null
@@ -0,0 +1,39 @@
+//  SuperTux
+//  Copyright (C) 2015 Tobias Markus <tobbi@mozilla-uk.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 3 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, see <http://www.gnu.org/licenses/>.
+
+#ifndef HEADER_SUPERTUX_PHYSFS_BUFFERED_OFILE_STREAM_HPP
+#define HEADER_SUPERTUX_PHYSFS_BUFFERED_OFILE_STREAM_HPP
+
+#include <ostream>
+#include <physfs.h>
+#include "physfs/ofile_stream.hpp"
+#include "physfs/ofile_streambuf.hpp"
+
+class BufferedOFileStream {
+
+private:
+  OFileStream* stream;
+  OFileStreambuf* buffer;
+
+public:
+  BufferedOFileStream(const std::string& filename);
+  ~BufferedOFileStream();
+  
+  OFileStream* get_stream();
+};
+#endif
+
+/* EOF */