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/llosymbol_opaque.hpp

23 lines
808 B

#include <llosymbol/llosymbol_base.hpp>
namespace llo::symbol
{
class symbol_opaque_t : public symbol_base_t
{
symbol_type_t type = symbol_type_t::s_opaque;
public:
explicit symbol_opaque_t( const llo::utils::hash_t< std::string > &symbol_name,
const llo::disposition_t &disposition )
: symbol_base_t( symbol_name, disposition )
{
}
static std::shared_ptr< symbol_opaque_t > make( const llo::utils::hash_t< std::string > &symbol_name,
const llo::disposition_t &disposition );
void set_size( std::size_t size );
symbol_type_t get_type() const override;
std::size_t get_size() const override;
};
} // namespace llo::symbol