transmission/gtk/SystemTrayIcon.h

27 lines
416 B
C
Raw Normal View History

/*
* This file Copyright (C) 2007-2014 Mnemosyne LLC
2007-02-19 22:09:05 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2007-02-19 22:09:05 +00:00
*
*/
2007-02-19 22:09:05 +00:00
#pragma once
2007-02-19 22:09:05 +00:00
#include <memory>
2007-02-19 22:09:05 +00:00
class Session;
class SystemTrayIcon
{
public:
SystemTrayIcon(Glib::RefPtr<Session> const& core);
~SystemTrayIcon();
void refresh();
private:
class Impl;
std::unique_ptr<Impl> const impl_;
};