Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame^] | 1 | /* -*- 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 | #ifndef NFD_TABLE_CS_ENTRY_H |
| 8 | #define NFD_TABLE_CS_ENTRY_H |
| 9 | #include <boost/utility.hpp> |
| 10 | namespace ndn { |
| 11 | namespace cs { |
| 12 | |
| 13 | /** \class Entry |
| 14 | * \brief represents a CS entry |
| 15 | */ |
| 16 | |
| 17 | class Entry : boost::noncopyable |
| 18 | { |
| 19 | }; |
| 20 | |
| 21 | };//namespace cs |
| 22 | };//namespace ndn |
| 23 | #endif//NFD_TABLE_CS_ENTRY_H |