summaryrefslogtreecommitdiff
path: root/netfs/ice/directory.ice
blob: 7468503f3be347c77f362a5ecead6e0ebd1f91ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _DIRECTORY
#define _DIRECTORY

#include "exceptions.ice"
#include "types.ice"

module NetFS {
	interface Directory {
		void close() throws AuthError, SystemError;

		idempotent NameList readdir() throws AuthError, SystemError;
	};
	
};

#endif