aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ICounterDirectory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/ICounterDirectory.hpp')
-rw-r--r--src/profiling/ICounterDirectory.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/profiling/ICounterDirectory.hpp b/src/profiling/ICounterDirectory.hpp
index 4f82b2e6e4..b19f7d306d 100644
--- a/src/profiling/ICounterDirectory.hpp
+++ b/src/profiling/ICounterDirectory.hpp
@@ -49,10 +49,8 @@ class Category final
{
public:
// Constructors
- Category(const std::string& name, uint16_t deviceUid, uint16_t counterSetUid)
+ Category(const std::string& name)
: m_Name(name)
- , m_DeviceUid(deviceUid)
- , m_CounterSetUid(counterSetUid)
{}
// Fields
@@ -60,8 +58,6 @@ public:
// Connections
std::vector<uint16_t> m_Counters; // The UIDs of the counters associated with this category
- uint16_t m_DeviceUid; // Optional, set to zero if the counter is not associated with a device
- uint16_t m_CounterSetUid; // Optional, set to zero if the counter is not associated with a counter set
};
class Device final