From 8fac8877069c1297c65c66436dca196673837bd2 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 26 Jan 2024 00:41:09 -0600 Subject: [PATCH] checkpoint --- src/branches2.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/branches2.cpp 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()) + { + } +}