mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-12-02 21:50:01 +08:00
branch2.cpp
This commit is contained in:
parent
66098421d8
commit
18635d489a
|
@ -1,5 +1,7 @@
|
|||
#include "branch2.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
||||
Branch2::Branch2()
|
||||
: mode(Mode::RW)
|
||||
|
@ -10,9 +12,11 @@ Branch2::Branch2()
|
|||
Branch2::Branch2(toml::value const &v_)
|
||||
: mode(Mode::RW)
|
||||
{
|
||||
std::cout << v_ << '\n';
|
||||
|
||||
enabled = v_.at("enabled").as_boolean();
|
||||
mode = Mode::_from_string(toml::find<std::string>(v_,"mode").c_str());
|
||||
min_free_space = 0;
|
||||
path = toml::find<std::string>(v_,"path");
|
||||
printf("%s\n",path.string().c_str());
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user