summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/Buffer.h
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-08-31 18:20:29 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-08-31 18:20:29 +0000
commit655b3b5806bafdd784f6a9c242e26341bd6aeccc (patch)
tree01fe5108d9901b6c577a5930be6ca31a625300fd /cpp/src/qpid/framing/Buffer.h
parentf5a1cf995f4956ec2dd83a60715b31ad065f7751 (diff)
downloadqpid-python-655b3b5806bafdd784f6a9c242e26341bd6aeccc.tar.gz
* Changes to make C++ client code use the asynchronous network IO
* Fixed up the test for buffer changes * Removed unused buffer operations git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@571529 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/Buffer.h')
-rw-r--r--cpp/src/qpid/framing/Buffer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/qpid/framing/Buffer.h b/cpp/src/qpid/framing/Buffer.h
index 04acb65e91..d1eb58f14e 100644
--- a/cpp/src/qpid/framing/Buffer.h
+++ b/cpp/src/qpid/framing/Buffer.h
@@ -41,18 +41,18 @@ class Buffer
public:
- Buffer(uint32_t size);
+ //Buffer(uint32_t size);
Buffer(char* data, uint32_t size);
~Buffer();
- void flip();
- void clear();
- void compact();
+ //void flip();
+ //void clear();
+ //void compact();
void record();
void restore();
uint32_t available();
- char* start();
- void move(uint32_t bytes);
+ //char* start();
+ //void move(uint32_t bytes);
void putOctet(uint8_t i);
void putShort(uint16_t i);