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-06-21 04:23:23 +02:00

19 lines
345 B
C++

#pragma once
#include "modules/base.hpp"
namespace modules
{
DefineModule(CounterModule, TimerModule)
{
static constexpr auto TAG_COUNTER = "<counter>";
concurrency::Atomic<int> counter;
public:
explicit CounterModule(std::string name);
bool update();
bool build(Builder *builder, std::string tag);
};
}