You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
stage-one/include/llosymbol_loader/llosymbol_loader_base.hpp

21 lines
418 B

#pragma once
#include <cstdint>
#include <lloiff.hpp>
#include <string>
#include <vector>
#include <regex>
namespace llo::s1
{
class symbol_loader_base_t
{
protected:
std::string symbols_path;
public:
explicit symbol_loader_base_t( const std::string &path ) : symbols_path{ path }
{
}
virtual bool load( llo::lloiff_t & ) = 0;
};
} // namespace llo::s1