cs: Implementing fake CS

refs #1129

Change-Id: I1aa2e9dcea5a8f298b254f13ad651ced22118471
diff --git a/daemon/table/cs-entry.hpp b/daemon/table/cs-entry.hpp
new file mode 100644
index 0000000..adb2b8c
--- /dev/null
+++ b/daemon/table/cs-entry.hpp
@@ -0,0 +1,23 @@
+/* -*- 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_TABLE_CS_ENTRY_H
+#define NFD_TABLE_CS_ENTRY_H
+#include <boost/utility.hpp>
+namespace ndn {
+namespace cs {
+
+/** \class Entry
+ *  \brief represents a CS entry
+ */
+
+class Entry : boost::noncopyable
+{
+};
+
+};//namespace cs
+};//namespace ndn
+#endif//NFD_TABLE_CS_ENTRY_H