mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
23 lines
341 B
C++
23 lines
341 B
C++
#pragma once
|
|
|
|
// #include "components/types.hpp"
|
|
// #include "components/builder.hpp"
|
|
|
|
#include "modules/meta/base.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
template <class Impl>
|
|
class event_module : public module<Impl> {
|
|
public:
|
|
using module<Impl>::module;
|
|
|
|
void start();
|
|
|
|
protected:
|
|
void runner();
|
|
};
|
|
}
|
|
|
|
POLYBAR_NS_END
|