18bbf81601
Also, this commit imports used classes from ::ndn namespace (from NDN-CPP library) directly to ::nfd namespace. refs: #1163 Change-Id: I9cc9d72e00af495b4ed0c84e6d418a7c9ba986cb
35 lines
449 B
C++
35 lines
449 B
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
// XXX This is a fake CS that does not cache anything.
|
|
|
|
#include "cs.hpp"
|
|
|
|
namespace nfd {
|
|
|
|
Cs::Cs()
|
|
{
|
|
}
|
|
|
|
Cs::~Cs()
|
|
{
|
|
}
|
|
|
|
bool
|
|
Cs::insert(const Data& data)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
const Data*
|
|
Cs::find(const Interest& interest)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
} //namespace nfd
|