blob: 1dcdd6de432e0f2ffabf91f6f9c75d411038143a [file] [log] [blame]
shockjiange9c1ab92014-07-21 12:02:52 -07001/*
2 * resolver.h
3 *
4 * Created on: 18 Jul, 2014
5 * Author: shock
6 */
7
8#ifndef RESOLVER_H_
9#define RESOLVER_H_
10
11#include <string>
12#include "rr.h"
13
14
15using namespace std;
16
17namespace ndn {
18
19class Resolver {
20public:
21 Resolver();
22 virtual ~Resolver();
23
24
25 const RR iterativelyResolve(const string domain, const string name);
26 const RR recusivelyResolve(const string domain, const string name);
27
28};
29
30} /* namespace ndn */
31
32#endif /* RESOLVER_H_ */