genode/repos/base-hw/include/hw_native_pd/client.h
Norman Feske f57519397b Remove Pd_session::Native_pd definition from API
This type can be a forward declaration in the public API because its
definition is required only in kernel-specific code.

Fixes #3979
2021-01-25 12:51:54 +01:00

33 lines
820 B
C++

/*
* \brief Client-side HW specific PD session interface
* \author Stefan Kalkowski
* \date 2017-06-12
*/
/*
* Copyright (C) 2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__HW_NATIVE_PD__CLIENT_H_
#define _INCLUDE__HW_NATIVE_PD__CLIENT_H_
#include <hw_native_pd/hw_native_pd.h>
#include <base/rpc_client.h>
namespace Genode { struct Hw_native_pd_client; }
struct Genode::Hw_native_pd_client : Rpc_client<Pd_session::Native_pd>
{
explicit Hw_native_pd_client(Capability<Pd_session::Native_pd> cap)
: Rpc_client<Pd_session::Native_pd>(cap) { }
void upgrade_cap_slab() override {
call<Rpc_upgrade_cap_slab>(); }
};
#endif /* _INCLUDE__HW_NATIVE_PD__CLIENT_H_ */