mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-04-21 12:31:43 +00:00
17 lines
199 B
C++
17 lines
199 B
C++
#include "branches2.hpp"
|
|
#include "func_create_base.hpp"
|
|
|
|
#include <memory>
|
|
|
|
class State
|
|
{
|
|
public:
|
|
State();
|
|
|
|
public:
|
|
Branches2 branches;
|
|
|
|
public:
|
|
std::unique_ptr<Func::CreateBase> create;
|
|
};
|