mirror of https://github.com/trapexit/mergerfs.git
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
249 B
21 lines
249 B
#include "branch2.hpp"
|
|
|
|
#include <vector>
|
|
|
|
class Branch2Vec
|
|
{
|
|
public:
|
|
uint64_t min_free_space;
|
|
|
|
private:
|
|
std::vector<Branch2> _branches;
|
|
};
|
|
|
|
class Branches2
|
|
{
|
|
public:
|
|
uint64_t min_free_space;
|
|
|
|
private:
|
|
std::vector<Branch2Vec> _branches;
|
|
};
|