[ndnSIM] fw: Add signals to monitor Hits/Misses of the CS
diff --git a/daemon/fw/forwarder.hpp b/daemon/fw/forwarder.hpp
index d433288..3b48660 100644
--- a/daemon/fw/forwarder.hpp
+++ b/daemon/fw/forwarder.hpp
@@ -192,6 +192,14 @@
    */
   signal::Signal<Forwarder, pit::Entry> beforeExpirePendingInterest;
 
+  /** \brief Signals when the incoming interest pipeline gets a hit from the content store
+   */
+  signal::Signal<Forwarder, Interest, Data> afterCsHit;
+
+  /** \brief Signals when the incoming interest pipeline gets a miss from the content store
+   */
+  signal::Signal<Forwarder, Interest> afterCsMiss;
+
 PUBLIC_WITH_TESTS_ELSE_PRIVATE: // pipelines
   /** \brief incoming Interest pipeline
    */