blob: 1726d87300f64ba17a11b06c000cc338e93b2771 [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
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -08007#ifndef NFD_TABLE_CS_ENTRY_HPP
8#define NFD_TABLE_CS_ENTRY_HPP
9
10#include "common.hpp"
11
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070012namespace ndn {
13namespace cs {
14
15/** \class Entry
16 * \brief represents a CS entry
17 */
18
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080019class Entry : noncopyable
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070020{
21};
22
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080023} // namespace cs
24} // namespace ndn
25
26#endif // NFD_TABLE_CS_ENTRY_HPP