blob: 923d2fa04bc99aad09bb683d615e3f451ebd27e2 [file] [log] [blame]
#ifndef NLSR_DM_HPP
#define NLSR_DM_HPP
#include <ndn-cpp-dev/face.hpp>
#include <ndn-cpp-dev/security/key-chain.hpp>
#include <ndn-cpp-dev/util/scheduler.hpp>
using namespace ndn;
using namespace std;
class nlsr;
class DataManager
{
public:
void processContent(nlsr& pnlsr, const ndn::Interest &interest,
const ndn::Data& data);
void processContentInfo(nlsr& pnlsr, string& dataName,
string& dataContent);
private:
};
#endif