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