aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/wnd/wndclass/tooltip.h
blob: 18122a4087b544e20597ab2211c6aab96a9e754f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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