mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:20:06 +00:00
22 lines
284 B
C++
22 lines
284 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <QPoint>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace util
|
|
{
|
|
namespace tooltip
|
|
{
|
|
|
|
void Show(const std::string& text, const QPointF& mouseGlobalPos);
|
|
void Hide();
|
|
|
|
} // namespace tooltip
|
|
} // namespace util
|
|
} // namespace qt
|
|
} // namespace scwx
|