Moved make_qualified_name into commodity_pool_t
This commit is contained in:
parent
3f8c126c79
commit
cec0f5ec49
2 changed files with 16 additions and 15 deletions
|
|
@ -108,8 +108,7 @@ commodity_pool_t::create(const string& symbol, const annotation_t& details)
|
||||||
return new_comm;
|
return new_comm;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace {
|
string commodity_pool_t::make_qualified_name(const commodity_t& comm,
|
||||||
string make_qualified_name(const commodity_t& comm,
|
|
||||||
const annotation_t& details)
|
const annotation_t& details)
|
||||||
{
|
{
|
||||||
assert(details);
|
assert(details);
|
||||||
|
|
@ -127,7 +126,6 @@ namespace {
|
||||||
|
|
||||||
return name.str();
|
return name.str();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
commodity_t *
|
commodity_t *
|
||||||
commodity_pool_t::find(const string& symbol, const annotation_t& details)
|
commodity_pool_t::find(const string& symbol, const annotation_t& details)
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,9 @@ public:
|
||||||
checked_delete(pair.second);
|
checked_delete(pair.second);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string make_qualified_name(const commodity_t& comm,
|
||||||
|
const annotation_t& details);
|
||||||
|
|
||||||
commodity_t * create(const string& symbol);
|
commodity_t * create(const string& symbol);
|
||||||
commodity_t * find(const string& name);
|
commodity_t * find(const string& name);
|
||||||
commodity_t * find_or_create(const string& symbol);
|
commodity_t * find_or_create(const string& symbol);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue