mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-04 12:05:03 +00:00
3158b2238a
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
17 lines
402 B
C++
17 lines
402 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "parser_t.h"
|
|
|
|
class opcode_test_suite_t final : public parser_t {
|
|
private:
|
|
[[nodiscard]] auto array() const noexcept { return raw().get_array(); }
|
|
|
|
public:
|
|
opcode_test_suite_t(std::string path) noexcept;
|
|
|
|
[[nodiscard]] auto begin() const noexcept { return array().begin(); }
|
|
[[nodiscard]] auto end() const noexcept { return array().end(); }
|
|
};
|