mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-04-21 12:31:43 +00:00
28 lines
331 B
C++
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;
|
|
};
|