mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
16 lines
245 B
C++
16 lines
245 B
C++
#pragma once
|
|
#include "export-symbol-helper.hpp"
|
|
|
|
#include <QLabel>
|
|
|
|
namespace advss {
|
|
|
|
class ADVSS_EXPORT HelpIcon : public QLabel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
HelpIcon(const QString &tooltip = "", QWidget *parent = nullptr);
|
|
};
|
|
|
|
} // namespace advss
|