mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
16 lines
260 B
C++
16 lines
260 B
C++
#ifndef WINTRAYTHEME_H
|
|
#define WINTRAYTHEME_H
|
|
|
|
#include <functional>
|
|
|
|
class QObject;
|
|
|
|
namespace WinTrayTheme
|
|
{
|
|
|
|
void installThemeObserver(const std::function<void()> &onThemeChanged, QObject *parent);
|
|
|
|
} // namespace WinTrayTheme
|
|
|
|
#endif // WINTRAYTHEME_H
|