1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/counter.hpp
2016-11-25 21:58:49 +01:00

23 lines
409 B
C++

#pragma once
#include "modules/meta/timer_module.hpp"
POLYBAR_NS
namespace modules {
class counter_module : public timer_module<counter_module> {
public:
using timer_module::timer_module;
void setup();
bool update();
bool build(builder* builder, const string& tag) const;
private:
static constexpr auto TAG_COUNTER = "<counter>";
int m_counter{0};
};
}
POLYBAR_NS_END