mgmt: Added skeleton for InternalFace

refs: #1137

Change-Id: I5aab5a9cac8da5f31603fb755b934347b63045eb
diff --git a/daemon/mgmt/app-face.hpp b/daemon/mgmt/app-face.hpp
new file mode 100644
index 0000000..af58cdf
--- /dev/null
+++ b/daemon/mgmt/app-face.hpp
@@ -0,0 +1,32 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (C) 2014 Named Data Networking Project
+ * See COPYING for copyright and distribution information.
+ */
+
+#ifndef NFD_MGMT_APP_FACE_HPP
+#define NFD_MGMT_APP_FACE_HPP
+
+#include "common.hpp"
+
+namespace nfd {
+
+typedef ndn::func_lib::function<void(const Name&, const Interest&)> OnInterest;
+
+class AppFace
+{
+public:
+  virtual void
+  setInterestFilter(const Name& filter,
+                    OnInterest onInterest) = 0;
+
+  virtual void
+  put(const Data& data) = 0;
+
+  virtual
+  ~AppFace() { }
+};
+
+} // namespace nfd
+
+#endif //NFD_MGMT_APP_FACE_HPP