mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +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
|