osb/source/frontend/StarSimpleTooltip.hpp
2023-06-20 14:33:09 +10:00

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