1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/x11/registry.hpp
2016-12-26 09:46:48 +01:00

25 lines
412 B
C++

#pragma once
#include "common.hpp"
#include "x11/extensions/fwd.hpp"
// fwd
namespace xpp {
namespace event {
template <typename Connection, typename... Extensions>
class registry;
}
}
POLYBAR_NS
class connection;
class registry : public xpp::event::registry<connection&, XPP_EXTENSION_LIST> {
public:
using priority = unsigned int;
explicit registry(connection& conn);
};
POLYBAR_NS_END