mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
29 lines
443 B
C++
29 lines
443 B
C++
|
#pragma once
|
||
|
|
||
|
#include <xcb/xcb.h>
|
||
|
|
||
|
#include "common.hpp"
|
||
|
#include "x11/extensions_fwd.hpp"
|
||
|
|
||
|
// fwd
|
||
|
namespace xpp {
|
||
|
namespace event {
|
||
|
template <typename Connection, typename... Extensions>
|
||
|
class registry;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
POLYBAR_NS
|
||
|
|
||
|
// fwd
|
||
|
class connection;
|
||
|
|
||
|
using xpp_registry = xpp::event::registry<connection&, XPP_EXTENSION_LIST>;
|
||
|
|
||
|
class registry : public xpp_registry {
|
||
|
public:
|
||
|
explicit registry(connection& conn);
|
||
|
};
|
||
|
|
||
|
POLYBAR_NS_END
|