blob: 0dc4000ed42bb92f070561ec71de345cdba372c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef STAR_SIMPLE_TOOLTIP_HPP
#define STAR_SIMPLE_TOOLTIP_HPP
#include "StarString.hpp"
namespace Star {
STAR_CLASS(Pane);
namespace SimpleTooltipBuilder {
PanePtr buildTooltip(String const& text);
};
}
#endif
|