2014-10-21 01:22:46 +00:00
|
|
|
// Aseprite Config Library
|
|
|
|
// Copyright (c) 2014 David Capello
|
|
|
|
//
|
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
|
|
|
|
|
|
|
#ifndef CFG_CFG_H_INCLUDED
|
|
|
|
#define CFG_CFG_H_INCLUDED
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace cfg {
|
|
|
|
|
|
|
|
class CfgFile {
|
|
|
|
public:
|
|
|
|
CfgFile();
|
|
|
|
~CfgFile();
|
|
|
|
|
|
|
|
const std::string& filename() const;
|
|
|
|
|
|
|
|
const char* getValue(const char* section, const char* name, const char* defaultValue) const;
|
|
|
|
bool getBoolValue(const char* section, const char* name, bool defaultValue);
|
|
|
|
int getIntValue(const char* section, const char* name, int defaultValue);
|
|
|
|
double getDoubleValue(const char* section, const char* name, double defaultValue);
|
|
|
|
|
|
|
|
void setValue(const char* section, const char* name, const char* value);
|
|
|
|
void setBoolValue(const char* section, const char* name, bool value);
|
|
|
|
void setIntValue(const char* section, const char* name, int value);
|
|
|
|
void setDoubleValue(const char* section, const char* name, double value);
|
|
|
|
|
2014-12-14 23:19:31 +00:00
|
|
|
void deleteValue(const char* section, const char* name);
|
|
|
|
|
2014-10-21 01:22:46 +00:00
|
|
|
void load(const std::string& filename);
|
|
|
|
void save();
|
|
|
|
|
|
|
|
private:
|
|
|
|
class CfgFileImpl;
|
|
|
|
CfgFileImpl* m_impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cfg
|
|
|
|
|
|
|
|
#endif
|