summaryrefslogtreecommitdiff
path: root/includes/BStream.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-23 08:48:56 -0800
committerPixel <pixel@nobis-crew.org>2011-11-23 08:48:56 -0800
commitb78404d7662298a27706bc08e86e9bde7a6baa66 (patch)
treee575ee14fa2a6bb9067c819b9a1c622cf4727f9c /includes/BStream.h
parente10639753d7dbd368f5edc2555d75c4b5905ba3b (diff)
Adding the isA<>() template / method to the IO proxy, and optimizing the BStream using it, in case one never wants to use the readString() or peekByte() methods.
Diffstat (limited to 'includes/BStream.h')
-rw-r--r--includes/BStream.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/BStream.h b/includes/BStream.h
index 087948d..d5b5c17 100644
--- a/includes/BStream.h
+++ b/includes/BStream.h
@@ -23,6 +23,7 @@ class BStream : public Handle {
size_t m_availBytes;
size_t m_cursor;
String m_name;
+ bool m_passThru;
};
};