fortuna/event_adder.h

17 lines
282 B
C
Raw Normal View History

#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;
};
2022-01-10 04:25:03 +01:00
} // namespace accumulator
} // namespace fortuna
#endif // FORTUNA_EVENT_ADDER_H