refactor(serif): refactored entire codebase into serif and sub namespaces

This commit is contained in:
2025-06-11 14:49:11 -04:00
parent ea4e8b70b3
commit fcf1d169a6
2 changed files with 18 additions and 5 deletions

View File

@@ -29,6 +29,9 @@
#include "config.h"
namespace serif {
namespace config {
Config::Config() {}
Config::~Config() {}
@@ -102,4 +105,7 @@ std::vector<std::string> Config::keys() const {
YAML::Node node = YAML::Clone(yamlRoot);
recurse_keys(node, keyList);
return keyList;
}
}
} // namespace config
} // namespace serif