Files
mergerfs/src/branches2.hpp
T
2024-01-25 23:28:03 -06:00

28 lines
331 B
C++

#include "branch2.hpp"
#include "toml.hpp"
#include <vector>
class Branch2Tier
{
public:
uint64_t min_free_space;
private:
std::vector<Branch2> _branches;
};
class Branches2
{
public:
Branches2();
Branches2(toml::value const &);
public:
uint64_t min_free_space;
private:
std::vector<Branch2Group> _branches;
};