diff --git a/src/branches2.cpp b/src/branches2.cpp new file mode 100644 index 00000000..2b68d81e --- /dev/null +++ b/src/branches2.cpp @@ -0,0 +1,17 @@ +#include "branches2.hpp" + +#include + +Branches2::Branches2() +{ + +} + +Branches2::Branches2(toml::value const &v_) +{ + auto const &branches = toml::find(v_,"branch"); + + for(auto const &branch : branches.as_array()) + { + } +}