summaryrefslogtreecommitdiff
path: root/queue.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-04-09 21:43:11 -0400
committerJeffrey Walton <noloader@gmail.com>2021-04-09 21:43:11 -0400
commit0489306966f97ef6656780268fc6b80f89d2ae8e (patch)
treee6c64e8e7792a0166dc2ca047fac16829813195e /queue.h
parent3e1a33cdb051557f407172626ed8e3c3db9cedd5 (diff)
downloadcryptopp-git-0489306966f97ef6656780268fc6b80f89d2ae8e.tar.gz
Update SecBlock and ByteQueue documentation
Diffstat (limited to 'queue.h')
-rw-r--r--queue.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/queue.h b/queue.h
index 1111bf41..5efbd81a 100644
--- a/queue.h
+++ b/queue.h
@@ -224,6 +224,9 @@ public:
}
/// \brief Construct a LazyPutter
+ /// \param bq the ByteQueue
+ /// \param inString a byte array to insert
+ /// \param size the length of the byte array
/// \details LazyPutter ensures LazyPut is committed to the ByteQueue
/// in event of exception. During destruction, the LazyPutter class
/// calls FinalizeLazyPut.
@@ -245,6 +248,9 @@ class LazyPutterModifiable : public LazyPutter
{
public:
/// \brief Construct a LazyPutterModifiable
+ /// \param bq the ByteQueue
+ /// \param inString a byte array to insert
+ /// \param size the length of the byte array
/// \details LazyPutterModifiable ensures LazyPut is committed to the
/// ByteQueue in event of exception. During destruction, the
/// LazyPutterModifiable class calls FinalizeLazyPut.