summaryrefslogtreecommitdiff
path: root/netfs/ice/entryResolver.h
blob: 1a20ec3b93fe0bcc2ea3ae826bd1a5e1a3b640a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef NETFS_ENTRYRESOLVER_H
#define NETFS_ENTRYRESOLVER_H

#include <string>
#include <stdlib.h>

template <class entry_t>
class EntryResolver {
	public:
		typedef std::string name_t;
		virtual void getID(const name_t &, id_t *) const = 0;
		virtual void getName(const id_t &, name_t *) const = 0;
};

#endif