shockjiang | e9c1ab9 | 2014-07-21 12:02:52 -0700 | [diff] [blame^] | 1 | /* |
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 | |||||
15 | using namespace std; | ||||
16 | |||||
17 | namespace ndn { | ||||
18 | |||||
19 | class Zone { | ||||
20 | public: | ||||
21 | Zone(); | ||||
22 | virtual ~Zone(); | ||||
23 | |||||
24 | const RR hasName(string key); | ||||
25 | |||||
26 | }; | ||||
27 | |||||
28 | } /* namespace ndn */ | ||||
29 | |||||
30 | #endif /* ZONE_H_ */ |