Files
mergerfs/src/branches2.cpp
T
2024-01-28 22:44:03 -06:00

21 lines
284 B
C++

#include "branches2.hpp"
#include "fmt/core.h"
#include <iostream>
Branches2::Branches2()
{
}
Branches2::Branches2(toml::value const &v_)
{
auto const &tiers = toml::find(v_,"tier");
for(auto const &tier : tiers.as_array())
{
_branches.emplace_back(tier);
}
}