omni::object
NAME

omni::object

A class of omni

SYNOPSIS

omni::object is a base type containing generic data that allows any children to inherit certain feature sets, like a 'tag' and a 'name' property, as well as an event to alert any subscribers of when the object is being disposed (destroyed)

#include <omni/object.hpp>
omni::object::object()
omni::object::~object()
std::size_t omni::object::hash()
virtual const omni::string_t omni::object::to_string_t()
omni::type_value omni::object::type()
bool omni::object::operator!=(const omni::object& o)
omni::object& omni::object::operator=(const omni::object& o)
bool omni::object::operator==(const omni::object& o)
omni::action omni::object::disposing()
omni::type_value omni::object::m_type()
omni::string_t omni::object::name()
omni::generic_ptr omni::object::tag()


top

DESCRIPTION

No description found.

top

RETURN VALUES

No return value.

top

ERRORS

No errors specific to this context.

top

CONSIDERATIONS

No extra considerations.

top

PLATFORM SPECIFIC

Nothing platform specific to account for.

top

NOTES

No additional notes.

top

EXAMPLE
Currently no examples.
Visit the examples page for more.

top