Moving component's CanonicalName() method into base class.

This commit is contained in:
Robin Sommer 2014-07-12 18:31:00 -07:00
parent 9616cd8e61
commit 6d9e261384
6 changed files with 10 additions and 20 deletions

View file

@ -11,6 +11,7 @@ Component::Component(component::Type arg_type, const std::string& arg_name)
{
type = arg_type;
name = arg_name;
canon_name = canonify_name(name);
}
Component::~Component()