aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bufferarray.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bufferarray.h')
-rw-r--r--lib/bufferarray.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/bufferarray.h b/lib/bufferarray.h
index 089eb4e..4cb948e 100644
--- a/lib/bufferarray.h
+++ b/lib/bufferarray.h
@@ -5,19 +5,19 @@
class bufferStore;
class bufferArray {
-public:
- bufferArray();
- bufferArray(const bufferArray &a);
- ~bufferArray();
- void operator =(const bufferArray &a);
+ public:
+ bufferArray();
+ bufferArray(const bufferArray &a);
+ ~bufferArray();
+ void operator =(const bufferArray &a);
- bool empty() const;
- bufferStore popBuffer();
- void pushBuffer(const bufferStore& b);
+ bool empty() const;
+ bufferStore popBuffer();
+ void pushBuffer(const bufferStore& b);
private:
- long len;
- long lenAllocd;
- bufferStore* buff;
+ long len;
+ long lenAllocd;
+ bufferStore* buff;
};
inline bool bufferArray::empty() const { return len == 0; }