blob: 2502105ed9871eb6a66e6811f6015c55c6a70fe9 [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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080012namespace nfd {
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070013namespace 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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080024} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080025
26#endif // NFD_TABLE_CS_ENTRY_HPP