blob: 3597ff13496fe4b5e3924137e952289e6263d87d [file] [log] [blame]
Junxiao Shi7860d482014-02-21 23:57:20 -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#include "face-counter.hpp"
8
9namespace nfd {
10
11FaceCounters::FaceCounters()
12 : m_inInterest(0)
13 , m_inData(0)
14 , m_outInterest(0)
15 , m_outData(0)
16{
17}
18
19} //namespace nfd