diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-05 20:51:26 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-05 20:51:26 +0200 |
| commit | 1d3e2b0146d01cb57bb80e55bb033f47fa63daf1 (patch) | |
| tree | 1b486c151a4bc4a56e7effab491ecbbe5527cd71 /lib | |
| parent | 028c97404da7ad9ebcbcd9c97903f28e0da222ed (diff) | |
feat: `fix/` directory category.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fix/parser.hpp (renamed from lib/fix.hpp) | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/fix.hpp b/lib/fix/parser.hpp index 4620ad0..83bbd1a 100644 --- a/lib/fix.hpp +++ b/lib/fix/parser.hpp @@ -55,6 +55,12 @@ namespace snu::fix static constexpr auto soh = '|'; static constexpr auto base = 10U; + explicit fix_visitor() = default; + ~fix_visitor() = default; + + fix_visitor& operator=(const fix_visitor&) = default; + fix_visitor(const fix_visitor&) = default; + fix_range_data visit(const std::string& in) { fix_range_data ret{}; |
