diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/Output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/Output.h b/includes/Output.h index fec3154..c80cf40 100644 --- a/includes/Output.h +++ b/includes/Output.h @@ -15,6 +15,7 @@ class Output : public SeekableHandle { virtual const char * getName(); virtual off_t getSize(); virtual time_t getMTime(); + virtual bool isPendingComplete(); const char * getFName() { return m_fname.to_charp(); } private: int m_fd = -1; @@ -22,6 +23,7 @@ class Output : public SeekableHandle { String m_fname; off_t m_size = -1; time_t m_mtime = -1; + void * m_pendingOp = NULL; }; }; |