MCPcopy Create free account
hub / github.com/OpenApoc/OpenApoc / getInt

Method getInt

framework/configfile.cpp:403–403  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

401
402UString ConfigFile::getString(const UString &key) { return this->pimpl->getTyped<UString>(key); }
403int ConfigFile::getInt(const UString &key) { return this->pimpl->getTyped<int>(key); }
404bool ConfigFile::getBool(const UString &key) { return this->pimpl->getTyped<bool>(key); }
405float ConfigFile::getFloat(const UString &key) { return this->pimpl->getTyped<float>(key); }
406bool ConfigFile::get(const UString &key) { return this->pimpl->get(key); }

Callers 4

beginMethod · 0.80
pushLuaFrameworkFunction · 0.80
getMethod · 0.80
toolTipStartTimerMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected