Initial commit
This commit is contained in:
commit
4f4397b3e1
48 changed files with 2002 additions and 0 deletions
14
VectorFiller/atlas/generator/generator.h
Normal file
14
VectorFiller/atlas/generator/generator.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// -*- mode: c++ -*-
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace atlas::generator {
|
||||
template <typename T>
|
||||
class Generator {
|
||||
public:
|
||||
virtual ~Generator() = default;
|
||||
|
||||
using value_type = T;
|
||||
virtual auto next() -> value_type = 0;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue