memspec class

This commit is contained in:
Janik Schlemminger
2014-08-27 09:43:42 +02:00
parent 8e29063f76
commit efc6094c13
29 changed files with 204 additions and 207 deletions

View File

@@ -21,20 +21,6 @@ Configuration::Configuration()
loader.loadConfiguration(*this, Configuration::memspecUri, Configuration::memconfigUri);
}
const std::vector<Bank>& Configuration::getBanks() const
{
static std::vector<Bank> banks;
if (banks.size() == 0)
{
for (unsigned int i = 0; i < NumberOfBanks; i++)
{
banks.push_back(Bank(i));
}
}
return banks;
}
} /* namespace core */