Added error signaling to Writer

This commit is contained in:
2019-04-03 16:42:39 +02:00
parent 7852017aba
commit e6956d9e6d
3 changed files with 163 additions and 129 deletions
+3
View File
@@ -59,8 +59,11 @@ class WriterManager
bool write_frame();
// True if the writing should continue.
bool is_writing() const;
// Signal that the writing has completed.
void writing_completed();
void writing_error(std::string error_message);
};
#endif