Files
NFD/daemon/table/cs.cpp
T
Alexander Afanasyev c9765dffb6 cs: Update interface
Change-Id: I9b637c21ae15e784317568affdc530c21ec32e9a
2014-01-25 23:05:50 -08:00

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 ndn {
Cs::Cs()
{
}
Cs::~Cs()
{
}
bool
Cs::insert(const Data &data)
{
return false;
}
const Data*
Cs::find(const Interest& interest)
{
return 0;
}
} //namespace ndn