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