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