From ec05778d5718a7912e506764d443a78d6a6179e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Nov 2012 22:41:51 +0000 Subject: Converted tabs to spaces with tabconv. --- src/stable/staticmembuf.h | 84 +++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) (limited to 'src/stable/staticmembuf.h') diff --git a/src/stable/staticmembuf.h b/src/stable/staticmembuf.h index 332e27d..2be05a0 100644 --- a/src/stable/staticmembuf.h +++ b/src/stable/staticmembuf.h @@ -15,51 +15,51 @@ namespace Bu { - /** - * An immutable, read-only memory buffer. Construct this buffer around a - * block of raw memory, provide the length of the block, and you can read - * from that block via this class as though it were a normal stream. - * - * Use this class instead of MemBuf when you have a string already, and - * don't need to change it. MemBuf will make a copy of your string for - * it's own use (often) and this will not (ever). - *@ingroup Streams - */ - class StaticMemBuf : public Stream - { - public: - StaticMemBuf( const void *pData, size iSize ); - virtual ~StaticMemBuf(); + /** + * An immutable, read-only memory buffer. Construct this buffer around a + * block of raw memory, provide the length of the block, and you can read + * from that block via this class as though it were a normal stream. + * + * Use this class instead of MemBuf when you have a string already, and + * don't need to change it. MemBuf will make a copy of your string for + * it's own use (often) and this will not (ever). + *@ingroup Streams + */ + class StaticMemBuf : public Stream + { + public: + StaticMemBuf( const void *pData, size iSize ); + virtual ~StaticMemBuf(); - virtual void close(); - virtual size read( void *pBuf, size iBytes ); + virtual void close(); + virtual size read( void *pBuf, size iBytes ); - virtual size write( const void *pBuf, size iBytes ); - using Stream::write; - virtual size tell(); - virtual void seek( size offset ); - virtual void setPos( size pos ); - virtual void setPosEnd( size pos ); - virtual bool isEos(); - virtual bool isOpen(); - virtual void flush(); - virtual bool canRead(); - virtual bool canWrite(); - virtual bool isReadable(); - virtual bool isWritable(); - virtual bool isSeekable(); - virtual bool isBlocking(); - virtual void setBlocking( bool bBlocking=true ); - virtual void setSize( size iSize ); - virtual size getSize() const; - virtual size getBlockSize() const; - virtual Bu::String getLocation() const; + virtual size write( const void *pBuf, size iBytes ); + using Stream::write; + virtual size tell(); + virtual void seek( size offset ); + virtual void setPos( size pos ); + virtual void setPosEnd( size pos ); + virtual bool isEos(); + virtual bool isOpen(); + virtual void flush(); + virtual bool canRead(); + virtual bool canWrite(); + virtual bool isReadable(); + virtual bool isWritable(); + virtual bool isSeekable(); + virtual bool isBlocking(); + virtual void setBlocking( bool bBlocking=true ); + virtual void setSize( size iSize ); + virtual size getSize() const; + virtual size getBlockSize() const; + virtual Bu::String getLocation() const; - private: - const void *pData; - size iSize; - size nPos; - }; + private: + const void *pData; + size iSize; + size nPos; + }; } #endif -- cgit v1.2.3