aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ICounterValues.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/ICounterValues.hpp')
-rw-r--r--src/profiling/ICounterValues.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/profiling/ICounterValues.hpp b/src/profiling/ICounterValues.hpp
index cef02668f6..09c26b6722 100644
--- a/src/profiling/ICounterValues.hpp
+++ b/src/profiling/ICounterValues.hpp
@@ -20,7 +20,8 @@ public:
virtual bool IsCounterRegistered(uint16_t counterUid) const = 0;
virtual uint16_t GetCounterCount() const = 0;
- virtual uint32_t GetCounterValue(uint16_t counterUid) const = 0;
+ virtual uint32_t GetAbsoluteCounterValue(uint16_t counterUid) const = 0;
+ virtual uint32_t GetDeltaCounterValue(uint16_t counterUid) = 0;
};
class IWriteCounterValues