cpp-utilities/io/inifile.h

56 lines
1.4 KiB
C
Raw Normal View History

2015-07-07 00:50:49 +02:00
#ifndef IOUTILITIES_INIFILE_H
#define IOUTILITIES_INIFILE_H
#include "../application/global.h"
#include <map>
namespace IoUtilities {
class LIB_EXPORT IniFile
{
public:
IniFile();
std::map<std::string, std::multimap<std::string, std::string> > &data();
const std::map<std::string, std::multimap<std::string, std::string> > &data() const;
void parse(std::istream &inputStream);
void make(std::ostream &outputStream);
private:
std::map<std::string, std::multimap<std::string, std::string> > m_data;
};
/*!
* \brief Constructs an empty ini file.
*/
inline IniFile::IniFile()
{}
/*!
* \brief Returns the data of the file.
*
* - The keys in the returned map represent the [scope name]s.
* - The values in the returned map are maps representing "key = value"-pairs within the scope.
* - The data might be modified an saved using the make() method.
*/
inline std::map<std::string, std::multimap<std::string, std::string> > &IniFile::data()
{
return m_data;
}
/*!
* \brief Returns the data of the file.
*
* - The keys in the returned map represent the [scope name]s.
* - The values in the returned map are maps representing "key = value"-pairs within the scope.
*/
inline const std::map<std::string, std::multimap<std::string, std::string> > &IniFile::data() const
{
return m_data;
}
} // namespace IoUtilities
#endif // IOUTILITIES_INIFILE_H