IPC: Allow passing arguments to the Interfaces when using PushIpcInterface
This commit is contained in:
parent
25f29c2f4f
commit
fb73e8b723
1 changed files with 3 additions and 3 deletions
|
@ -98,9 +98,9 @@ public:
|
||||||
PushRaw(data_payload_header);
|
PushRaw(data_payload_header);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T, class... Args>
|
||||||
void PushIpcInterface() {
|
void PushIpcInterface(Args&&... args) {
|
||||||
context->AddDomainObject(std::make_shared<T>());
|
context->AddDomainObject(std::make_shared<T>(std::forward<Args>(args)...));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate on destruction, as there shouldn't be any case where we don't want it
|
// Validate on destruction, as there shouldn't be any case where we don't want it
|
||||||
|
|
Loading…
Reference in a new issue