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