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.
15 lines
218 B
15 lines
218 B
#include "branch2.hpp"
|
|
|
|
|
|
Branch2::Branch2()
|
|
: mode(Mode::RW)
|
|
{
|
|
|
|
}
|
|
|
|
Branch2::Branch2(toml::value const &v_)
|
|
: mode(Mode::RW)
|
|
{
|
|
enabled = v_.at("enabled").as_boolean();
|
|
// mode = v_.at("mode").as_string();
|
|
}
|