mergerfs/src/branch_tier.hpp

21 lines
240 B
C++
Raw Normal View History

2024-01-29 12:45:38 +08:00
#pragma once
#include "branch2.hpp"
#include "toml.hpp"
#include <vector>
class BranchTier
{
public:
BranchTier();
BranchTier(toml::value const &);
public:
uint64_t min_free_space;
private:
std::vector<Branch2> _branches;
};