Junxiao Shi | 7860d48 | 2014-02-21 23:57:20 -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 | #include "face-counter.hpp" | ||||
8 | |||||
9 | namespace nfd { | ||||
10 | |||||
11 | FaceCounters::FaceCounters() | ||||
12 | : m_inInterest(0) | ||||
13 | , m_inData(0) | ||||
14 | , m_outInterest(0) | ||||
15 | , m_outData(0) | ||||
16 | { | ||||
17 | } | ||||
18 | |||||
19 | } //namespace nfd |