blob: da513eda9beea0cbfbdb8df2125eea8665a76ccf [file] [log] [blame]
akmhoque95b7c8c2014-01-31 15:53:09 -06001#ifndef NLSR_DM_HPP
2#define NLSR_DM_HPP
3
4#include <ndn-cpp-dev/face.hpp>
5#include <ndn-cpp-dev/security/key-chain.hpp>
6#include <ndn-cpp-dev/util/scheduler.hpp>
7
8
9using namespace ndn;
10using namespace std;
11
12class nlsr;
13
14class DataManager
15{
16public:
17 void processContent(const nlsr& pnlsr,
18 const ndn::ptr_lib::shared_ptr<const ndn::Interest> &interest,
19 const ndn::ptr_lib::shared_ptr<ndn::Data> &data);
20private:
21
22};
23
24
25#endif