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/src/llosymbol/llosymbol_opaque.cpp

25 lines
676 B

#include <llosymbol/llosymbol_opaque.hpp>
namespace llo::symbol
{
std::shared_ptr< symbol_opaque_t > symbol_opaque_t::make( const llo::utils::hash_t< std::string > &symbol_name,
const llo::disposition_t &disposition )
{
return std::make_shared< symbol_opaque_t >( symbol_name, disposition );
}
symbol_type_t symbol_opaque_t::get_type() const
{
return type;
}
std::size_t symbol_opaque_t::get_size() const
{
return symbol_size;
}
void symbol_opaque_t::set_size( std::size_t size )
{
symbol_size = size;
}
} // namespace llo::symbol