mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
* \brief Client-side nitpicker session interface
|
|
* \author Norman Feske
|
|
* \date 2006-08-23
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2012 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__NITPICKER_SESSION__CLIENT_H_
|
|
#define _INCLUDE__NITPICKER_SESSION__CLIENT_H_
|
|
|
|
#include <nitpicker_session/capability.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Nitpicker {
|
|
|
|
struct Session_client : public Genode::Rpc_client<Session>
|
|
{
|
|
explicit Session_client(Session_capability session)
|
|
: Genode::Rpc_client<Session>(session) { }
|
|
|
|
Framebuffer::Session_capability framebuffer_session() {
|
|
return call<Rpc_framebuffer_session>(); }
|
|
|
|
Input::Session_capability input_session() {
|
|
return call<Rpc_input_session>(); }
|
|
|
|
View_capability create_view() {
|
|
return call<Rpc_create_view>(); }
|
|
|
|
void destroy_view(View_capability view) {
|
|
call<Rpc_destroy_view>(view); }
|
|
|
|
int background(View_capability view) {
|
|
return call<Rpc_background>(view); }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__NITPICKER_SESSION__CLIENT_H_ */
|