view src/core/ini.cc @ 291:9a88e1725fd2

*: refactor lots of stuff I forgot to put this into different commits, oops! anyway, it doesn't really matter *that* much since this is an unfinished hobby project anyway. once it starts getting stable commit history will be more important, but for now it's not that big of a deal
author Paper <paper@paper.us.eu.org>
date Sun, 12 May 2024 16:31:07 -0400
parents ec0a2b5493f8
children
line wrap: on
line source

#include "core/ini.h"

namespace INI {

std::string GetIniString(const mINI::INIStructure& ini, const std::string& section, const std::string& key, const std::string& def) {
	if (!ini.has(section) || !ini.get(section).has(key))
		return def;

	return ini.get(section).get(key);
}

bool GetIniBool(const mINI::INIStructure& ini, const std::string& section, const std::string& key, bool def) {
	return Strings::ToBool(GetIniString(ini, section, key, ""), def);
}

}