genode/os/include/nitpicker_session/client.h
2013-01-10 21:44:47 +01:00

45 lines
1.1 KiB
C++

/*
* \brief Client-side nitpicker session interface
* \author Norman Feske
* \date 2006-08-23
*/
/*
* Copyright (C) 2006-2013 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_ */