cpp: adds Doxyfile

This commit is contained in:
frsyuki 2010-06-01 08:43:30 +09:00
parent eabcf15790
commit 3d3af3284e
12 changed files with 1758 additions and 34 deletions

View file

@ -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
}