blob: e1461d3795eaf84c0c7ec862a11bd5bfcb0eef54 [file] [log] [blame]
Junxiao Shib289cc12014-03-15 12:19:05 -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_FW_FORWARDER_COUNTER_HPP
8#define NFD_FW_FORWARDER_COUNTER_HPP
9
10#include "face/face-counter.hpp"
11
12namespace nfd {
13
14/** \class ForwarderCounter
15 * \brief represents a counter on forwarder
16 *
17 * \todo This class should be noncopyable
18 */
19typedef uint64_t ForwarderCounter;
20
21
22/** \brief contains counters on forwarder
23 */
24class ForwarderCounters : public FaceCounters
25{
26};
27
28
29} // namespace nfd
30
31#endif // NFD_FW_FORWARDER_COUNTER_HPP