blob: 74afde357319100d15507fa67ac853d56c0a70cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef GITFS_DIRECTORY_H
#define GITFS_DIRECTORY_H
#include <directory.h>
#include "git.h"
namespace GitFS {
using namespace NetFS;
class Directory : public DirectoryV2 {
public:
Directory(const GitFS::Git::TreePtr & r, const std::string &);
void close(const ::Ice::Current& current) override;
NameList readdir(const ::Ice::Current& current) override;
DirectoryContents listdir(const ::Ice::Current& current) override;
private:
Git::TreePtr tree;
const std::string path;
};
}
#endif
|