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.
 
 
 
 

24 lines
475 B

#include "func_mknod_base.hpp"
#include <string_view>
namespace Func2
{
class MknodFF : public MknodBase
{
public:
MknodFF() {}
~MknodFF() {}
public:
std::string_view name() const;
public:
int operator()(const ugid_t &ugid,
const Branches &branches,
const fs::path &fusepath,
const mode_t mode,
const mode_t umask,
const dev_t dev);
};
}