X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fphysfs%2Fphysfs_stream.hpp;h=e5f727603e5e4bb4108ab5103ba97235db5f742d;hb=1cda2772a8bd261ef8746e13e10d5d8abbe741d6;hp=9d2ed47365b39bab4321a7b80ca2ab0d8e1f6a59;hpb=08813a74da6ac1fd045a105e4e8105f1d7f716f0;p=supertux.git diff --git a/src/physfs/physfs_stream.hpp b/src/physfs/physfs_stream.hpp index 9d2ed4736..e5f727603 100644 --- a/src/physfs/physfs_stream.hpp +++ b/src/physfs/physfs_stream.hpp @@ -38,6 +38,10 @@ protected: private: PHYSFS_file* file; char buf[1024]; + +private: + IFileStreambuf(const IFileStreambuf&); + IFileStreambuf& operator=(const IFileStreambuf&); }; class OFileStreambuf : public std::streambuf @@ -53,6 +57,10 @@ protected: private: PHYSFS_file* file; char buf[1024]; + +private: + OFileStreambuf(const OFileStreambuf&); + OFileStreambuf& operator=(const OFileStreambuf&); }; class IFileStream : public std::istream