diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2007-06-07 19:56:20 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-07 19:56:20 +0000 |
| commit | 9e8a4944e50fab432012878c66e1bdac20649f76 (patch) | |
| tree | 412b0d49ae4086bb330045f9956513397b866807 /src/stream.h | |
| parent | c2e3879b965d297604804f03271ac71c8c5c81f3 (diff) | |
| download | libbu++-9e8a4944e50fab432012878c66e1bdac20649f76.tar.gz libbu++-9e8a4944e50fab432012878c66e1bdac20649f76.tar.bz2 libbu++-9e8a4944e50fab432012878c66e1bdac20649f76.tar.xz libbu++-9e8a4944e50fab432012878c66e1bdac20649f76.zip | |
The Stream Filter archetecture is finished, it's actually much cooler than I
had anticipated, and much cleaner. I'll have to add some documentation to it,
because it's not really obvious how any of it fits together from the outset,
although I have to say that the bzip2 test program is the easiest general bzip2
compression program I've ever made...it just goes :)
Decompression in Bu::BZip2 isn't finished yet, but that's ok, it's coming soon.
Diffstat (limited to '')
| -rw-r--r-- | src/stream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h index 5f586e6..fa0a606 100644 --- a/src/stream.h +++ b/src/stream.h | |||
| @@ -39,6 +39,9 @@ namespace Bu | |||
| 39 | virtual bool isBlocking() = 0; | 39 | virtual bool isBlocking() = 0; |
| 40 | virtual void setBlocking( bool bBlocking=true ) = 0; | 40 | virtual void setBlocking( bool bBlocking=true ) = 0; |
| 41 | 41 | ||
| 42 | public: // Filters | ||
| 43 | |||
| 44 | |||
| 42 | private: | 45 | private: |
| 43 | 46 | ||
| 44 | }; | 47 | }; |
