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