X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace2%2Fbabeltrace.h;h=fd0bb7fa68ae0a28cde561d586d157ae6f9279cb;hp=739e76b3b3a1b4ae142a995a94646df3d5cff4e3;hb=7b6afccb24b31e2feed787c2ed97809e797c3070;hpb=bbb7b5f044dc06e50eaa34ed3a880b34e1e7ebb8 diff --git a/include/babeltrace2/babeltrace.h b/include/babeltrace2/babeltrace.h index 739e76b3..fd0bb7fa 100644 --- a/include/babeltrace2/babeltrace.h +++ b/include/babeltrace2/babeltrace.h @@ -32,13 +32,24 @@ # define __BT_IN_BABELTRACE_H #endif -/* Need by some of the following included headers */ +/* Internal: needed by some of the following included headers */ #include +/* Internal: needed by some of the following included headers */ +#ifdef __cplusplus +# define __BT_UPCAST(_type, _p) static_cast<_type *>(static_cast(_p)) +# define __BT_UPCAST_CONST(_type, _p) static_cast(static_cast(_p)) +#else +# define __BT_UPCAST(_type, _p) ((_type *) (_p)) +# define __BT_UPCAST_CONST(_type, _p) ((const _type *) (_p)) +#endif + /* Core API */ #include #include #include +#include +#include #include #include #include @@ -100,7 +111,6 @@ /* Message iterator API */ #include -#include #include #include @@ -125,14 +135,20 @@ #include /* Graph API */ +#include +#include #include #include #include +#include +#include +#include #include #include #include /* Query executor API */ +#include #include #include @@ -144,18 +160,17 @@ #include /* Cancel private definitions */ -#undef __BT_FUNC_STATUS_OVERFLOW -#undef __BT_FUNC_STATUS_INVALID_PARAMS -#undef __BT_FUNC_STATUS_INVALID_OBJECT -#undef __BT_FUNC_STATUS_MEMORY_ERROR -#undef __BT_FUNC_STATUS_LOADING_ERROR -#undef __BT_FUNC_STATUS_ERROR -#undef __BT_FUNC_STATUS_OK +#undef __BT_FUNC_STATUS_AGAIN #undef __BT_FUNC_STATUS_END +#undef __BT_FUNC_STATUS_ERROR +#undef __BT_FUNC_STATUS_INTERRUPTED +#undef __BT_FUNC_STATUS_UNKNOWN_OBJECT +#undef __BT_FUNC_STATUS_MEMORY_ERROR #undef __BT_FUNC_STATUS_NOT_FOUND -#undef __BT_FUNC_STATUS_AGAIN -#undef __BT_FUNC_STATUS_UNSUPPORTED -#undef __BT_FUNC_STATUS_CANCELED +#undef __BT_FUNC_STATUS_OK +#undef __BT_FUNC_STATUS_OVERFLOW_ERROR #undef __BT_IN_BABELTRACE_H +#undef __BT_UPCAST +#undef __BT_UPCAST_CONST #endif /* BABELTRACE2_BABELTRACE_H */