polybar/include/modules/counter.hpp

20 lines
345 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include "modules/base.hpp"
namespace modules
{
DefineModule(CounterModule, TimerModule)
{
static constexpr auto TAG_COUNTER = "<counter>";
2016-05-19 14:41:06 +00:00
concurrency::Atomic<int> counter;
public:
2016-06-21 01:59:43 +00:00
explicit CounterModule(std::string name);
2016-05-19 14:41:06 +00:00
bool update();
2016-06-21 01:59:43 +00:00
bool build(Builder *builder, std::string tag);
2016-05-19 14:41:06 +00:00
};
}