diff options
Diffstat (limited to '')
-rw-r--r-- | c++-qt/src/gatsstream.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/c++-qt/src/gatsstream.h b/c++-qt/src/gatsstream.h index f1c0625..90e0514 100644 --- a/c++-qt/src/gatsstream.h +++ b/c++-qt/src/gatsstream.h | |||
@@ -32,6 +32,14 @@ namespace Gats | |||
32 | * non-null then hasReadBuffer should return false on it's next call. | 32 | * non-null then hasReadBuffer should return false on it's next call. |
33 | */ | 33 | */ |
34 | Gats::Object *readObject(); | 34 | Gats::Object *readObject(); |
35 | |||
36 | /** | ||
37 | * Works exactly like readObject, except it reads all pending objects | ||
38 | * and emits a objectRead signal for each one read. It doesn't return | ||
39 | * anything. This is perfect for connecting to a QIODevice's readRead | ||
40 | * signal. | ||
41 | */ | ||
42 | void readAllObjects(); | ||
35 | 43 | ||
36 | public: | 44 | public: |
37 | /** | 45 | /** |