00001 /*************************************************************************** 00002 Counter.hpp - description 00003 ------------------- 00004 begin : cs dec 26 2002 00005 copyright : (C) 2002 by Ferenc Bodon 00006 email : bodon@cs.bme.hu 00007 ***************************************************************************/ 00008 00009 #ifndef Counter_HPP 00010 #define Counter_HPP 00011 00017 #include "common.hpp" 00018 00019 class Counter 00020 { 00021 public: 00022 Counter() : counter(0){} 00023 Counter(counter_t counter) : counter(counter){} 00024 counter_t counter; 00025 }; 00026 00027 #endif