Initial commit

This commit is contained in:
Bartek Kryza
2021-02-07 23:13:52 +01:00
commit 8ccd4bc81e
26 changed files with 27626 additions and 0 deletions

14
src/config/config.cc Normal file
View File

@@ -0,0 +1,14 @@
#include "config.h"
namespace clanguml {
namespace config {
config load(const std::string &config_file)
{
YAML::Node doc = YAML::LoadFile(config_file);
return doc.as<config>();
}
}
}