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