blob: 4ea9c205d82c526bbf30dca703922e5a8b11270a [file] [log] [blame]
Ilya Moiseenko08a98a42011-08-02 16:06:51 -07001//
2// ndn_face.h
3// Abstraction
4//
5// Copyright 2011 UCLA. All rights reserved.
6//
7
8#ifndef ndn_face_h
9#define ndn_face_h
10
11#include "ns3/header.h"
12
13namespace ns3
14{
15 // see http://www.ccnx.org/releases/latest/doc/ccode/html/structface.html
16 class NdnFace
17 {
18 public:
19 NdnFace(int faceID);
20 virtual ~NdnFace();
21
22 private:
23 int m_faceID;
24
25 };
26
27}
28
29#endif