surtur
bc5bb6e700
All checks were successful
continuous-integration/drone/push Build is passing
will be used as a base implementations of sources of random events
17 lines
278 B
C++
17 lines
278 B
C++
#ifndef FORTUNA_EVENT_ADDER_H
|
|
#define FORTUNA_EVENT_ADDER_H
|
|
|
|
#include <vector>
|
|
|
|
namespace fortuna {
|
|
namespace accumulator {
|
|
|
|
class EventAdder {
|
|
public:
|
|
virtual void add(std::vector<char> e) = 0;
|
|
};
|
|
|
|
} //namespace accumulator
|
|
} //namespace fortuna
|
|
#endif//FORTUNA_EVENT_ADDER_H
|