diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-16 01:08:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-16 01:08:13 +0300 |
| commit | d41e167aa9a22b446cbcfe6fd4ebdd810c61ba73 (patch) | |
| tree | 3ed50d019b3d78c748ed6b46ca69f2ca7943f41a /indra/llcorehttp/bufferstream.h | |
| parent | 29be88d60d654193926add496d2d851f7c217356 (diff) | |
| parent | bdb8caf790207e1a6f46d495a586b38bb52e58e9 (diff) | |
Merge pull request #1478 from secondlife/marchcat/x-mf-merge
Maint X -> Materials Featurette merge
Diffstat (limited to 'indra/llcorehttp/bufferstream.h')
| -rw-r--r-- | indra/llcorehttp/bufferstream.h | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/indra/llcorehttp/bufferstream.h b/indra/llcorehttp/bufferstream.h index 9327a798aa..93891810aa 100644 --- a/indra/llcorehttp/bufferstream.h +++ b/indra/llcorehttp/bufferstream.h @@ -24,8 +24,8 @@ * $/LicenseInfo$ */ -#ifndef _LLCORE_BUFFER_STREAM_H_ -#define _LLCORE_BUFFER_STREAM_H_ +#ifndef _LLCORE_BUFFER_STREAM_H_ +#define _LLCORE_BUFFER_STREAM_H_ #include <sstream> @@ -85,38 +85,38 @@ namespace LLCore class BufferArrayStreamBuf : public std::streambuf { public: - /// Constructor increments the reference count on the - /// BufferArray argument and calls release() on destruction. - BufferArrayStreamBuf(BufferArray * array); - virtual ~BufferArrayStreamBuf(); + /// Constructor increments the reference count on the + /// BufferArray argument and calls release() on destruction. + BufferArrayStreamBuf(BufferArray * array); + virtual ~BufferArrayStreamBuf(); private: - BufferArrayStreamBuf(const BufferArrayStreamBuf &); // Not defined - void operator=(const BufferArrayStreamBuf &); // Not defined + BufferArrayStreamBuf(const BufferArrayStreamBuf &); // Not defined + void operator=(const BufferArrayStreamBuf &); // Not defined public: - // Input interfaces from std::streambuf - int_type underflow(); - int_type uflow(); - int_type pbackfail(int_type ch); - std::streamsize showmanyc(); - - // Output interfaces from std::streambuf - int_type overflow(int c); - std::streamsize xsputn(const char * src, std::streamsize count); - - // Common/misc interfaces from std::streambuf - std::streampos seekoff(std::streamoff off, std::ios_base::seekdir way, std::ios_base::openmode which); - + // Input interfaces from std::streambuf + int_type underflow(); + int_type uflow(); + int_type pbackfail(int_type ch); + std::streamsize showmanyc(); + + // Output interfaces from std::streambuf + int_type overflow(int c); + std::streamsize xsputn(const char * src, std::streamsize count); + + // Common/misc interfaces from std::streambuf + std::streampos seekoff(std::streamoff off, std::ios_base::seekdir way, std::ios_base::openmode which); + protected: - BufferArray * mBufferArray; // Ref counted - size_t mReadCurPos; - int mReadCurBlock; - const char * mReadBegin; - const char * mReadCur; - const char * mReadEnd; - size_t mWriteCurPos; - + BufferArray * mBufferArray; // Ref counted + size_t mReadCurPos; + int mReadCurBlock; + const char * mReadBegin; + const char * mReadCur; + const char * mReadEnd; + size_t mWriteCurPos; + }; // end class BufferArrayStreamBuf @@ -134,20 +134,20 @@ protected: class BufferArrayStream : public std::iostream { public: - /// Constructor increments the reference count on the - /// BufferArray argument and calls release() on destruction. - BufferArrayStream(BufferArray * ba); - ~BufferArrayStream(); + /// Constructor increments the reference count on the + /// BufferArray argument and calls release() on destruction. + BufferArrayStream(BufferArray * ba); + ~BufferArrayStream(); protected: - BufferArrayStream(const BufferArrayStream &); - void operator=(const BufferArrayStream &); + BufferArrayStream(const BufferArrayStream &); + void operator=(const BufferArrayStream &); protected: - BufferArrayStreamBuf mStreamBuf; + BufferArrayStreamBuf mStreamBuf; }; // end class BufferArrayStream } // end namespace LLCore -#endif // _LLCORE_BUFFER_STREAM_H_ +#endif // _LLCORE_BUFFER_STREAM_H_ |
