blob: 778eb710e4e9397ad9085fe7929169b3ab1f3156 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- 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_STREAM_FACE_HPP
8#define NFD_FACE_STREAM_FACE_HPP
9
10#include "face.hpp"
11
12namespace ndn {
13
14template <class T>
15class StreamFace : public Face
16{
17public:
18 typedef T protocol;
19
20 StreamFace(FaceId id)
21 : Face(id)
22 {
23 }
24
25};
26
27} // namespace ndn
28
29#endif // NFD_FACE_STREAM_FACE_HPP