mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
19 lines
359 B
C++
19 lines
359 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(const std::string& name);
|
|
|
|
bool update();
|
|
bool build(Builder *builder, const std::string& tag);
|
|
};
|
|
}
|