17 lines
220 B
C++
17 lines
220 B
C++
|
#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
|