diff options
author | weidai <weidai11@users.noreply.github.com> | 2003-06-20 03:12:54 +0000 |
---|---|---|
committer | weidai <weidai11@users.noreply.github.com> | 2003-06-20 03:12:54 +0000 |
commit | da759fb13a613645767932eebbffb359de723f71 (patch) | |
tree | 153a0d9ffdbeff5955688bd6fd08bc91cab539f0 /queue.h | |
parent | ace405444416997b168712d32b7ea74a3bd43c94 (diff) | |
download | cryptopp-git-da759fb13a613645767932eebbffb359de723f71.tar.gz |
auto queue node size
Diffstat (limited to 'queue.h')
-rw-r--r-- | queue.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,7 @@ class ByteQueueNode; class ByteQueue : public Bufferless<BufferedTransformation> { public: - ByteQueue(unsigned int m_nodeSize=256); + ByteQueue(unsigned int m_nodeSize=0); ByteQueue(const ByteQueue ©); ~ByteQueue(); @@ -99,6 +99,7 @@ private: void CopyFrom(const ByteQueue ©); void Destroy(); + bool m_autoNodeSize; unsigned int m_nodeSize; ByteQueueNode *m_head, *m_tail; byte *m_lazyString; |