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,10 +108,9 @@ commodity_pool_t::create(const string& symbol, const annotation_t& details)
|
|||
return new_comm;
|
||||
}
|
||||
|
||||
namespace {
|
||||
string make_qualified_name(const commodity_t& comm,
|
||||
string commodity_pool_t::make_qualified_name(const commodity_t& comm,
|
||||
const annotation_t& details)
|
||||
{
|
||||
{
|
||||
assert(details);
|
||||
|
||||
if (details.price && details.price->sign() < 0)
|
||||
|
|
@ -126,7 +125,6 @@ namespace {
|
|||
DEBUG("amounts.commodities", "qualified_name is " << name.str());
|
||||
|
||||
return name.str();
|
||||
}
|
||||
}
|
||||
|
||||
commodity_t *
|
||||
|
|
|
|||
|
|
@ -98,6 +98,9 @@ public:
|
|||
checked_delete(pair.second);
|
||||
}
|
||||
|
||||
string make_qualified_name(const commodity_t& comm,
|
||||
const annotation_t& details);
|
||||
|
||||
commodity_t * create(const string& symbol);
|
||||
commodity_t * find(const string& name);
|
||||
commodity_t * find_or_create(const string& symbol);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue