Service/NIM: convert to ServiceFramework

This commit is contained in:
wwylele 2018-03-01 21:12:20 +02:00
parent 001ad9da3b
commit 508bba2932
10 changed files with 99 additions and 128 deletions

View file

@ -116,9 +116,6 @@ public:
void PushRaw(const T& value);
// TODO : ensure that translate params are added after all regular params
template <typename... H>
[[deprecated]] void PushCopyHandles(H... handles);
template <typename... O>
void PushCopyObjects(Kernel::SharedPtr<O>... pointers);
@ -185,11 +182,6 @@ void RequestBuilder::Push(const First& first_value, const Other&... other_values
Push(other_values...);
}
template <typename... H>
inline void RequestBuilder::PushCopyHandles(H... handles) {
PushCopyHLEHandles(handles...);
}
template <typename... H>
inline void RequestBuilder::PushCopyHLEHandles(H... handles) {
Push(CopyHandleDesc(sizeof...(H)));