diff options
Diffstat (limited to 'Src/Wasabi/api/wnd/wndclass/tooltip.h')
-rw-r--r-- | Src/Wasabi/api/wnd/wndclass/tooltip.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Src/Wasabi/api/wnd/wndclass/tooltip.h b/Src/Wasabi/api/wnd/wndclass/tooltip.h new file mode 100644 index 00000000..18122a40 --- /dev/null +++ b/Src/Wasabi/api/wnd/wndclass/tooltip.h @@ -0,0 +1,18 @@ +#ifndef __TOOLTIP_H +#define __TOOLTIP_H + +#include <api/service/svcs/svc_tooltips.h> + +class Tooltip { + + public: + + Tooltip(const wchar_t *txt); + virtual ~Tooltip(); + + private: + + svc_toolTipsRenderer *svc; +}; + +#endif |