diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-02-17 16:31:55 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-02-17 16:31:55 +0000 |
commit | 89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40 (patch) | |
tree | a4a8fc2e184df736f61c1dea1e8627dd3667b071 /src/stream.h | |
parent | 27c626112a7114f9bdc4f7739f9ec05ae9fcbee1 (diff) | |
download | libbu++-89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40.tar.gz libbu++-89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40.tar.bz2 libbu++-89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40.tar.xz libbu++-89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40.zip |
Tweaked the stream classes, added an example, and the begining of a formula
parser.
Diffstat (limited to '')
-rw-r--r-- | src/stream.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h index 32e5432..e086e28 100644 --- a/src/stream.h +++ b/src/stream.h | |||
@@ -18,6 +18,7 @@ public: | |||
18 | virtual void seek( long offset ) = 0; | 18 | virtual void seek( long offset ) = 0; |
19 | virtual void setPos( long pos ) = 0; | 19 | virtual void setPos( long pos ) = 0; |
20 | virtual void setPosEnd( long pos ) = 0; | 20 | virtual void setPosEnd( long pos ) = 0; |
21 | virtual bool isEOS() = 0; | ||
21 | 22 | ||
22 | private: | 23 | private: |
23 | 24 | ||