diff options
author | Gordon Sim <gsim@apache.org> | 2006-12-13 17:15:01 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2006-12-13 17:15:01 +0000 |
commit | 346760b8e03bb50c1704d9e7e762fa4f5a284fb6 (patch) | |
tree | 0271c7fc7d0799f7ecf80b362512b68cb2c5eeec /cpp/lib/common | |
parent | 9b87937e2657848cd8497bda70266e38dc8c0f90 (diff) | |
download | qpid-python-346760b8e03bb50c1704d9e7e762fa4f5a284fb6.tar.gz |
Added some doxygen comments for the client API.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486747 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/common')
-rw-r--r-- | cpp/lib/common/framing/FieldTable.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/lib/common/framing/FieldTable.h b/cpp/lib/common/framing/FieldTable.h index 3d09cdec64..6fa10ab108 100644 --- a/cpp/lib/common/framing/FieldTable.h +++ b/cpp/lib/common/framing/FieldTable.h @@ -28,11 +28,21 @@ #define _FieldTable_ namespace qpid { + /** + * The framing namespace contains classes that are used to create, + * send and receive the basic packets from which AMQP is built. + */ namespace framing { class Value; class Buffer; +/** + * A set of name-value pairs. (See the AMQP spec for more details on + * AMQP field tables). + * + * \ingroup clientapi + */ class FieldTable { public: |