fastinahurry/include/Controller.hh
xbazzi b2ca2d9cc2
Some checks failed
Simple Mirror to GitHub / mirror (push) Failing after 7s
Fix data races
2025-08-17 15:34:13 -06:00

10 lines
169 B
C++

#include "Algo.hh"
class Controller {
public:
explicit Controller(int, char*[]);
void start();
private:
std::unique_ptr<Algo> _algo;
uint32_t _count;
};