Rudiments
directory.h
1 // Copyright (c) 2004 David Muse
2 // See the COPYING file for more information
3 
4  private:
5  // how do we effectively make a copy of a DIR?
6  // since I don't know how, for now, these are private
7  directory(const directory &d);
8  directory &operator=(const directory &d);
9 
10  static int64_t pathConf(const char *pathname, int32_t name);
11 
12  int64_t fpathConf(int32_t name);
13 
14  directoryprivate *pvt;
Definition: directory.h:13