blob: fdf5168e6edcdbf6eb68ef746f22c38592fb03d6 [file] [log] [blame]
Junxiao Shi0fcb41e2014-01-24 10:29:43 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7// XXX This is a fake CS that does not cache anything.
8
9#include "cs.hpp"
10namespace ndn {
11
12Cs::Cs()
13{
14}
15
16Cs::~Cs()
17{
18}
19
20bool
21Cs::insert(boost::shared_ptr<Data> data)
22{
23 return false;
24}
25
26boost::shared_ptr<cs::Entry>
27Cs::find(const Interest& interest)
28{
29 return boost::shared_ptr<cs::Entry>();
30}
31
32
33};//namespace ndn