basic framework, waiting for Alex's comments
diff --git a/src/zone.h b/src/zone.h
new file mode 100644
index 0000000..bdc2581
--- /dev/null
+++ b/src/zone.h
@@ -0,0 +1,30 @@
+/*
+ * zone.h
+ *
+ * Created on: 18 Jul, 2014
+ * Author: shock
+ */
+
+#ifndef ZONE_H_
+#define ZONE_H_
+
+#include <string>
+#include "rr.h"
+
+
+using namespace std;
+
+namespace ndn {
+
+class Zone {
+public:
+ Zone();
+ virtual ~Zone();
+
+ const RR hasName(string key);
+
+};
+
+} /* namespace ndn */
+
+#endif /* ZONE_H_ */