Rudiments
directory.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information
3
4 directory(directory &d) {};
5 directory &operator=(directory &d) { return *this; };
6
7 private:
8 static int64_t pathConf(const char *pathname, int32_t name);
9
10 int64_t fpathConf(int32_t name);
11
12 directoryprivate *pvt;
Definition directory.h:11