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