Build viewer/editor #13
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ class BinaryWriter {
|
||||||
explicit BinaryWriter(const std::string& filename);
|
explicit BinaryWriter(const std::string& filename);
|
||||||
~BinaryWriter();
|
~BinaryWriter();
|
||||||
|
|
||||||
|
BinaryWriter(const BinaryWriter& other) = delete;
|
||||||
|
BinaryWriter& operator=(const BinaryWriter& other) = delete;
|
||||||
|
|
||||||
|
BinaryWriter(BinaryWriter&& other) = default;
|
||||||
|
BinaryWriter& operator=(BinaryWriter&& other) = default;
|
||||||
|
|
||||||
auto open() -> bool;
|
auto open() -> bool;
|
||||||
|
|
||||||
void closeFile();
|
void closeFile();
|
||||||
|
|
Loading…
Reference in a new issue