add Name and Selector classes
diff --git a/src/ccnx-tunnel.cpp b/src/ccnx-tunnel.cpp
index 06adae0..037bd8a 100644
--- a/src/ccnx-tunnel.cpp
+++ b/src/ccnx-tunnel.cpp
@@ -28,9 +28,9 @@
}
int
-CcnxTunnel::sendInterest (const Interest &interest, Closure *closure)
+CcnxTunnel::sendInterest (const string &interest, Closure *closure)
{
- string strInterest = interest.name();
+ string strInterest = interest;
string tunneledInterest = queryRoutableName(strInterest);
Closure *cp = new TunnelClosure(closure, this, strInterest);
sendInterest(tunneledInterest, cp);