diff options
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r-- | include/gwin/gwin.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h index 8385fe92..4e1b7b58 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -55,7 +55,7 @@ typedef struct GWindowObject { GHandle child; // @< The child widget #endif } GWindowObject, * GHandle; -/* @} */ +/** @} */ /** * @brief The structure to initialise a GWIN. @@ -70,7 +70,7 @@ typedef struct GWindowInit { coord_t width, height; // @< The initial dimension bool_t show; // @< Should the window be visible initially } GWindowInit; -/* @} */ +/** @} */ /** * @brief A window's minimized, maximized or normal size @@ -906,6 +906,11 @@ extern "C" { * Additional functionality *-------------------------------------------------*/ + /* Include groups */ + #if GWIN_NEED_GROUPS || defined(__DOXYGEN__) + #include "gwin/ggroup.h" + #endif + /* Include widgets */ #if GWIN_NEED_WIDGET || defined(__DOXYGEN__) #include "gwin/gwidget.h" |