Remove core-comm dependency through CounterManager/timex in core/oam subsystem. Basic...
[anna.git] / include / anna / core / oam / Counter.hpp
index 5df966e..d3aad32 100644 (file)
@@ -80,7 +80,7 @@ public:
    * Devuelve el valor acumulado de este contador.
    * \return El valor acumulado de este contador.
    */
-  Unsigned64 getAccumulatedValue() const throw() { return a_accValue; }
+  U64 getAccumulatedValue() const throw() { return a_accValue; }
 
   /**
      Operador de conversion.
@@ -111,7 +111,7 @@ private:
   const int a_id;
   std::string a_name;
   type_t a_value;
-  Unsigned64 a_accValue;
+  U64 a_accValue;
 
   Counter(CounterScope& scope, const int id, const char* name);
   Counter(const Counter&);