Browse Source

checkpoint

toml4
Antonio SJ Musumeci 10 months ago
parent
commit
8fac887706
  1. 17
      src/branches2.cpp

17
src/branches2.cpp

@ -0,0 +1,17 @@
#include "branches2.hpp"
#include <iostream>
Branches2::Branches2()
{
}
Branches2::Branches2(toml::value const &v_)
{
auto const &branches = toml::find(v_,"branch");
for(auto const &branch : branches.as_array())
{
}
}
Loading…
Cancel
Save