diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-05-17 05:56:26 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-05-17 05:56:26 +0000 |
commit | e0e7932a122614a0ff566fbfd8de5776de8b9f6d (patch) | |
tree | ae87ab46b677bfd05f340051a56f1edbc94862a9 /src/file.h | |
parent | dda94f3b53e02e117e6eb5758afa1410e1664c9f (diff) | |
download | libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.gz libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.bz2 libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.tar.xz libbu++-e0e7932a122614a0ff566fbfd8de5776de8b9f6d.zip |
Lots of cool new stuff, the Server class actually works for everything except
actually interacting with clients, and the Client class is almost there, except
that it doesn't really do anything yet.
Diffstat (limited to 'src/file.h')
-rw-r--r-- | src/file.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,9 @@ namespace Bu | |||
27 | virtual bool canWrite(); | 27 | virtual bool canWrite(); |
28 | virtual bool canSeek(); | 28 | virtual bool canSeek(); |
29 | 29 | ||
30 | virtual bool isBlocking(); | ||
31 | virtual void setBlocking( bool bBlocking=true ); | ||
32 | |||
30 | private: | 33 | private: |
31 | FILE *fh; | 34 | FILE *fh; |
32 | 35 | ||