diff options
| author | frsyuki <frsyuki@users.sourceforge.jp> | 2010-06-01 08:43:30 +0900 |
|---|---|---|
| committer | frsyuki <frsyuki@users.sourceforge.jp> | 2010-06-01 08:43:30 +0900 |
| commit | 3d3af3284e3a5fd03395b6694fd745491509aa64 (patch) | |
| tree | e7d5cac03eceb078b6c7ebf7acdb356481cd4bd5 /cpp/src/msgpack/object.h | |
| parent | eabcf15790a774ce718ae1738c6ddb407e1cd279 (diff) | |
| download | msgpack-python-3d3af3284e3a5fd03395b6694fd745491509aa64.tar.gz | |
cpp: adds Doxyfile
Diffstat (limited to 'cpp/src/msgpack/object.h')
| -rw-r--r-- | cpp/src/msgpack/object.h | 8 |
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 } |
