INIFile::Key* INIFile::getKey(const std::string& sectionname, const std::string& keyname) const {
    INIFile::Section* curSection = getSection(sectionname);
    if(curSection == NULL) {
        return NULL;
    }

    return curSection->getKey(keyname);
}