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.
 
 
 
 

21 lines
266 B

#pragma once
#include "branch2.hpp"
#include "branch_tier.hpp"
#include "toml.hpp"
#include <vector>
class Branches2
{
public:
Branches2();
Branches2(toml::value const &);
public:
uint64_t min_free_space;
private:
std::vector<BranchTier> _branches;
};