blob: d4fb77fca06de7a8a0c9cf6a2f3a6fc3cff71b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "baseMapper.h"
#include "entries.h"
#include "entryResolver.h"
#include <mapper.h>
namespace NetFS {
namespace Mapping {
class DefaultMapper : public Mapper, BaseMapper {
public:
using BaseMapper::BaseMapper;
Transport mapFileSystem(int uid, int gid) override;
FileSystem mapTransport(const std::string & un, const std::string & gn) override;
};
}
}
|