godot/core/io/config_file.cpp

/**************************************************************************/
/*  config_file.cpp                                                       */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "config_file.h"

#include "core/io/file_access_encrypted.h"
#include "core/os/keyboard.h"
#include "core/string/string_builder.h"
#include "core/variant/variant_parser.h"

PackedStringArray ConfigFile::_get_sections() const {}

PackedStringArray ConfigFile::_get_section_keys(const String &p_section) const {}

void ConfigFile::set_value(const String &p_section, const String &p_key, const Variant &p_value) {}

Variant ConfigFile::get_value(const String &p_section, const String &p_key, const Variant &p_default) const {}

bool ConfigFile::has_section(const String &p_section) const {}

bool ConfigFile::has_section_key(const String &p_section, const String &p_key) const {}

void ConfigFile::get_sections(List<String> *r_sections) const {}

void ConfigFile::get_section_keys(const String &p_section, List<String> *r_keys) const {}

void ConfigFile::erase_section(const String &p_section) {}

void ConfigFile::erase_section_key(const String &p_section, const String &p_key) {}

String ConfigFile::encode_to_text() const {}

Error ConfigFile::save(const String &p_path) {}

Error ConfigFile::save_encrypted(const String &p_path, const Vector<uint8_t> &p_key) {}

Error ConfigFile::save_encrypted_pass(const String &p_path, const String &p_pass) {}

Error ConfigFile::_internal_save(Ref<FileAccess> file) {}

Error ConfigFile::load(const String &p_path) {}

Error ConfigFile::load_encrypted(const String &p_path, const Vector<uint8_t> &p_key) {}

Error ConfigFile::load_encrypted_pass(const String &p_path, const String &p_pass) {}

Error ConfigFile::_internal_load(const String &p_path, Ref<FileAccess> f) {}

Error ConfigFile::parse(const String &p_data) {}

Error ConfigFile::_parse(const String &p_path, VariantParser::Stream *p_stream) {}

void ConfigFile::clear() {}

void ConfigFile::_bind_methods() {}