mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-13 21:23:46 +08:00
21 lines
240 B
C++
21 lines
240 B
C++
|
#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;
|
||
|
};
|