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.
pEpJSONServerAdapter/server/context.cc

18 lines
238 B
C++

#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();
}