diff options
author | David Robillard <d@drobilla.net> | 2020-03-07 18:27:44 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-07 18:28:15 +0100 |
commit | 0a4e6e1568e2369d80ed7ac9af4751dc2a276364 (patch) | |
tree | 1e5074495f318fac62631f2cc5e64ecdd51c116d /pugl/pugl.hpp | |
parent | c0c6e93c0c3702fdd7a3f9fb4927dd7f7271000d (diff) | |
download | pugl-0a4e6e1568e2369d80ed7ac9af4751dc2a276364.tar.gz pugl-0a4e6e1568e2369d80ed7ac9af4751dc2a276364.tar.bz2 pugl-0a4e6e1568e2369d80ed7ac9af4751dc2a276364.zip |
Organize documentation into groups
Diffstat (limited to 'pugl/pugl.hpp')
-rw-r--r-- | pugl/pugl.hpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/pugl/pugl.hpp b/pugl/pugl.hpp index 1c4b9e7..73cfe2a 100644 --- a/pugl/pugl.hpp +++ b/pugl/pugl.hpp @@ -25,13 +25,25 @@ /** @defgroup puglxx C++ - Pugl C++ API wrapper. - @ingroup pugl + + C++ API wrapper. + + @ingroup pugl_api @{ */ +/** + Pugl C++ API namespace. +*/ namespace pugl { +/** + A drawable region that receives events. + + This is a thin wrapper for a PuglView that contains only a pointer. + + @ingroup puglxx +*/ class View { public: View(int* pargc, char** argv) |