diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/src/process.h b/src/process.h index 68678bd..4934408 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Copyright (C) 2007-2010 Xagasoft, All rights reserved. | 2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. |
| 3 | * | 3 | * |
| 4 | * This file is part of the libbu++ library and is released under the | 4 | * This file is part of the libbu++ library and is released under the |
| 5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <sys/types.h> | 12 | #include <sys/types.h> |
| 13 | 13 | ||
| 14 | #include "bu/stream.h" | 14 | #include "bu/stream.h" |
| 15 | #include "bu/fstring.h" | 15 | #include "bu/string.h" |
| 16 | 16 | ||
| 17 | namespace Bu | 17 | namespace Bu |
| 18 | { | 18 | { |
| @@ -44,15 +44,15 @@ namespace Bu | |||
| 44 | void wait(); | 44 | void wait(); |
| 45 | 45 | ||
| 46 | virtual void close(); | 46 | virtual void close(); |
| 47 | virtual size_t read( void *pBuf, size_t nBytes ); | 47 | virtual Bu::size read( void *pBuf, Bu::size nBytes ); |
| 48 | virtual size_t readErr( void *pBuf, size_t nBytes ); | 48 | virtual Bu::size readErr( void *pBuf, Bu::size nBytes ); |
| 49 | virtual size_t write( const void *pBuf, size_t nBytes ); | 49 | virtual Bu::size write( const void *pBuf, Bu::size nBytes ); |
| 50 | using Stream::write; | 50 | using Stream::write; |
| 51 | 51 | ||
| 52 | virtual long tell(); | 52 | virtual Bu::size tell(); |
| 53 | virtual void seek( long offset ); | 53 | virtual void seek( Bu::size offset ); |
| 54 | virtual void setPos( long pos ); | 54 | virtual void setPos( Bu::size pos ); |
| 55 | virtual void setPosEnd( long pos ); | 55 | virtual void setPosEnd( Bu::size pos ); |
| 56 | virtual bool isEos(); | 56 | virtual bool isEos(); |
| 57 | virtual bool isOpen(); | 57 | virtual bool isOpen(); |
| 58 | 58 | ||
| @@ -68,7 +68,11 @@ namespace Bu | |||
| 68 | virtual bool isBlocking(); | 68 | virtual bool isBlocking(); |
| 69 | virtual void setBlocking( bool bBlocking=true ); | 69 | virtual void setBlocking( bool bBlocking=true ); |
| 70 | 70 | ||
| 71 | virtual void setSize( long iSize ); | 71 | virtual void setSize( Bu::size iSize ); |
| 72 | |||
| 73 | virtual size getBlockSize() const; | ||
| 74 | virtual size getSize() const; | ||
| 75 | virtual Bu::String getLocation() const; | ||
| 72 | 76 | ||
| 73 | void select( bool &bStdOut, bool &bStdErr ); | 77 | void select( bool &bStdOut, bool &bStdErr ); |
| 74 | 78 | ||
