Junxiao Shi | 2c29f3a | 2014-01-24 19:59:00 -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_FACE_FACE_H |
| 8 | #define NFD_FACE_FACE_H |
| 9 | |
| 10 | #include "common.hpp" |
| 11 | |
| 12 | namespace ndn { |
| 13 | |
| 14 | /** \class FaceId |
| 15 | * \brief identifies a face |
| 16 | */ |
| 17 | typedef int FaceId; |
| 18 | |
| 19 | /** \class Face |
| 20 | * \brief represents a face |
| 21 | */ |
| 22 | class Face : noncopyable |
| 23 | { |
| 24 | }; |
| 25 | |
| 26 | } // namespace ndn |
| 27 | |
| 28 | #endif // NFD_FACE_FACE_H |