18 lines
311 B
C++
18 lines
311 B
C++
#ifndef FORTUNA_ACCUMULATOR_H
|
|
#define FORTUNA_ACCUMULATOR_H
|
|
|
|
#include "pool.h"
|
|
|
|
namespace fortuna {
|
|
namespace accumulator {
|
|
|
|
class Accumulator {
|
|
public:
|
|
constexpr static const unsigned int init_pool_num{0};
|
|
}; //class Accumulator
|
|
|
|
} //namespace accumulator
|
|
} //namespace fortuna
|
|
|
|
#endif//FORTUNA_ACCUMULATOR_H
|