mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-22 09:30:32 +00:00
3158b2238a
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
12 lines
218 B
C++
12 lines
218 B
C++
#include "stdafx.h"
|
|
#include "parser_t.h"
|
|
|
|
simdjson::dom::parser parser_t::m_parser;
|
|
|
|
parser_t::parser_t(const std::string path) noexcept
|
|
: m_path(path) {}
|
|
|
|
void parser_t::load() {
|
|
m_raw = m_parser.load(path());
|
|
}
|