mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-03-01 20:25:25 +08:00
14 lines
162 B
C++
14 lines
162 B
C++
#include "state.hpp"
|
|
|
|
#include "func_create_ff.hpp"
|
|
|
|
#include "make_unique.hpp"
|
|
|
|
State state;
|
|
|
|
State::State()
|
|
{
|
|
create = std::make_unique<Func::CreateFF>();
|
|
}
|
|
|