Minor refactoring in stream reading.

This commit is contained in:
2017-06-20 18:13:49 +02:00
parent 7162fa76f6
commit 97c6e58355
2 changed files with 5 additions and 7 deletions

View File

@@ -37,8 +37,8 @@ class Stream
Stream(const Stream &other) = delete;
Stream &operator=(const Stream &other) = delete;
Stream(Stream &&other) = default;
Stream &operator=(Stream &&other) = default;
Stream(Stream &&other) = delete;
Stream &operator=(Stream &&other) = delete;
void read(std::string streamName, std::istream &istream);
void read(const std::experimental::filesystem::path &path);