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