summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/bufferstream.h
diff options
context:
space:
mode:
authorBrad Linden <46733234+brad-linden@users.noreply.github.com>2024-05-23 13:02:08 -0700
committerGitHub <noreply@github.com>2024-05-23 13:02:08 -0700
commit0cc832c38a34013a9eebf8d3caad2921bead265d (patch)
tree8d916206343d075fc85e90e83ec9dabe8b01376d /indra/llcorehttp/bufferstream.h
parent03c4458bdcc6821a3047f93b729d412e274ab9af (diff)
parent9f6849e081deac1f62ab3010ee0984e17749c9e6 (diff)
Merge pull request #1528 from secondlife/brad/merge-maint-a-to-dev
merge maint-a (including maint-x) into gltf_development
Diffstat (limited to 'indra/llcorehttp/bufferstream.h')
-rw-r--r--indra/llcorehttp/bufferstream.h74
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_