You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

56 lines
1.0 KiB

#include "branch_tier.hpp"
#include "fmt/core.h"
namespace l
{
static
void
load_branch_literal(toml::table const &v_,
std::vector<Branch2> &branches_)
{
branches_.emplace_back(v_);
}
static
void
load_branch_glob(toml::table const &v_,
std::vector<Branch2> &branches_)
{
}
static
void
load_branch_scan(toml::table const &v_,
std::vector<Branch2> &branches_)
{
}
}
BranchTier::BranchTier()
{
}
BranchTier::BranchTier(toml::value const &v_)
{
auto const &branches = toml::find(v_,"branch").as_array();
for(auto const &branch : branches)
{
std::string type;
auto const &table = branch.as_table();
type = table.at("type").as_string();
if(type == "literal")
l::load_branch_literal(table,_branches);
else if(type == "glob")
l::load_branch_glob(table,_branches);
else if(type == "scan")
l::load_branch_scan(table,_branches);
fmt::print("{}\n",type);
}
}