summaryrefslogtreecommitdiff
path: root/cpp/src/msgpack/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/msgpack/object.h')
-rw-r--r--cpp/src/msgpack/object.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/src/msgpack/object.h b/cpp/src/msgpack/object.h
index 71a27bb..cf0b4c1 100644
--- a/cpp/src/msgpack/object.h
+++ b/cpp/src/msgpack/object.h
@@ -26,6 +26,12 @@ extern "C" {
#endif
+/**
+ * @defgroup msgpack_object Dynamically typed object
+ * @ingroup msgpack
+ * @{
+ */
+
typedef enum {
MSGPACK_OBJECT_NIL = 0x00,
MSGPACK_OBJECT_BOOLEAN = 0x01,
@@ -81,6 +87,8 @@ void msgpack_object_print(FILE* out, msgpack_object o);
bool msgpack_object_equal(const msgpack_object x, const msgpack_object y);
+/** @} */
+
#ifdef __cplusplus
}