aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp')
-rw-r--r--tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp b/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
index e1172e2d68..faf9792ac0 100644
--- a/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
+++ b/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
@@ -26,8 +26,11 @@ public:
* @param version The version of that id.
* @param quietOperation Optional parameter to turn off printouts. This is useful for unittests.
*/
- PeriodicCounterSelectionResponseHandler(uint32_t packetId, uint32_t version, bool quietOperation = true)
- : CommandHandlerFunctor(packetId, version)
+ PeriodicCounterSelectionResponseHandler(uint32_t familyId,
+ uint32_t packetId,
+ uint32_t version,
+ bool quietOperation = true)
+ : CommandHandlerFunctor(familyId, packetId, version)
, m_QuietOperation(quietOperation)
{}