diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2007-09-06 10:36:17 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2007-09-06 10:36:17 +0000 |
| commit | 385243182f6f4dadb14fccfae79216f17fccea9d (patch) | |
| tree | ebbe1a4f63110b8bd2a2a0fa6cbca7b1aeeef447 /cpp/src/qpid/framing/Buffer.h | |
| parent | 168ebfd952c0a654b1419ee76eef473318e2d6dc (diff) | |
| download | qpid-python-385243182f6f4dadb14fccfae79216f17fccea9d.tar.gz | |
* Tidy up framing::Buffer class
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@573213 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/Buffer.h')
| -rw-r--r-- | cpp/src/qpid/framing/Buffer.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cpp/src/qpid/framing/Buffer.h b/cpp/src/qpid/framing/Buffer.h index d1eb58f14e..b8f3ddb6a9 100644 --- a/cpp/src/qpid/framing/Buffer.h +++ b/cpp/src/qpid/framing/Buffer.h @@ -32,27 +32,17 @@ class FieldTable; class Buffer { const uint32_t size; - const bool owner;//indicates whether the data is owned by this instance char* data; uint32_t position; - uint32_t limit; uint32_t r_position; - uint32_t r_limit; public: - //Buffer(uint32_t size); Buffer(char* data, uint32_t size); - ~Buffer(); - //void flip(); - //void clear(); - //void compact(); void record(); void restore(); uint32_t available(); - //char* start(); - //void move(uint32_t bytes); void putOctet(uint8_t i); void putShort(uint16_t i); |
