mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
23 lines
395 B
C++
23 lines
395 B
C++
|
#ifndef _MODULES_COUNTER_HPP_
|
||
|
#define _MODULES_COUNTER_HPP_
|
||
|
|
||
|
#include "modules/base.hpp"
|
||
|
|
||
|
namespace modules
|
||
|
{
|
||
|
DefineModule(CounterModule, TimerModule)
|
||
|
{
|
||
|
const char *TAG_COUNTER = "<counter>";
|
||
|
|
||
|
concurrency::Atomic<int> counter;
|
||
|
|
||
|
public:
|
||
|
CounterModule(const std::string& name);
|
||
|
|
||
|
bool update();
|
||
|
bool build(Builder *builder, const std::string& tag);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|