You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "context.hh"
|
|
|
|
void Context::store(int position, size_t value)
|
|
{
|
|
obj_store.emplace( position, value );
|
|
}
|
|
|
|
size_t Context::retrieve(int position)
|
|
{
|
|
return obj_store.at(position);
|
|
}
|
|
|
|
|
|
void Context::clear()
|
|
{
|
|
obj_store.clear();
|
|
}
|