// -*- mode: c++ -*- #pragma once namespace atlas::generator { template class Generator { public: virtual ~Generator() = default; using value_type = T; virtual auto next() -> value_type = 0; }; }