summaryrefslogtreecommitdiff
path: root/includes/BStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/BStream.h')
-rw-r--r--includes/BStream.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/BStream.h b/includes/BStream.h
index d5b5c17..86b0e0f 100644
--- a/includes/BStream.h
+++ b/includes/BStream.h
@@ -17,6 +17,7 @@ class BStream : public Handle {
int peekNextByte();
String readString(bool putNL = false);
bool isEmpty() { return m_availBytes == 0; }
+ void detach() { m_detached = true; }
private:
IO<Handle> m_h;
uint8_t * m_buffer;
@@ -24,6 +25,8 @@ class BStream : public Handle {
size_t m_cursor;
String m_name;
bool m_passThru;
+ bool m_detached;
+ bool m_closed;
};
};