From 8bea03e0811588e741050b598b8123865b333999 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Tue, 4 Nov 2025 22:06:39 +0800 Subject: Move toml to base. --- include/cru/toml/TomlDocument.h | 57 ----------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 include/cru/toml/TomlDocument.h (limited to 'include/cru/toml/TomlDocument.h') diff --git a/include/cru/toml/TomlDocument.h b/include/cru/toml/TomlDocument.h deleted file mode 100644 index 22442096..00000000 --- a/include/cru/toml/TomlDocument.h +++ /dev/null @@ -1,57 +0,0 @@ -#pragma once - -#include "Base.h" - -#include "cru/base/Base.h" - -#include -#include -#include - -namespace cru::toml { -class CRU_TOML_API TomlSection { - public: - CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(TomlSection) - CRU_DEFAULT_COPY(TomlSection) - CRU_DEFAULT_MOVE(TomlSection) - - public: - std::optional GetValue(const std::string& key) const; - void SetValue(const std::string& key, std::string value); - void DeleteValue(const std::string& key); - - auto begin() { return values_.begin(); } - auto end() { return values_.end(); } - auto begin() const { return values_.begin(); } - auto end() const { return values_.end(); } - auto cbegin() const { return values_.cbegin(); } - auto cend() const { return values_.cend(); } - - private: - std::unordered_map values_; -}; - -class CRU_TOML_API TomlDocument { - public: - CRU_DEFAULT_CONSTRUCTOR_DESTRUCTOR(TomlDocument) - CRU_DEFAULT_COPY(TomlDocument) - CRU_DEFAULT_MOVE(TomlDocument) - - public: - TomlSection* GetSection(const std::string& name); - TomlSection* GetSectionOrCreate(const std::string& name); - const TomlSection* GetSection(const std::string& name) const; - void SetSection(const std::string& name, TomlSection section); - void DeleteSection(const std::string& name); - - auto begin() { return sections_.begin(); } - auto end() { return sections_.end(); } - auto begin() const { return sections_.begin(); } - auto end() const { return sections_.end(); } - auto cbegin() const { return sections_.cbegin(); } - auto cend() const { return sections_.cend(); } - - private: - std::unordered_map sections_; -}; -} // namespace cru::toml -- cgit v1.2.3