genode/repos/base/include/io_mem_session/client.h

32 lines
827 B
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Client-side I/O-memory session interface
* \author Christian Helmuth
* \date 2006-08-01
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* 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__IO_MEM_SESSION__CLIENT_H_
#define _INCLUDE__IO_MEM_SESSION__CLIENT_H_
#include <io_mem_session/capability.h>
#include <base/rpc_client.h>
namespace Genode { struct Io_mem_session_client; }
2011-12-22 16:19:25 +01:00
struct Genode::Io_mem_session_client : Rpc_client<Io_mem_session>
{
explicit Io_mem_session_client(Io_mem_session_capability session)
: Rpc_client<Io_mem_session>(session) { }
Io_mem_dataspace_capability dataspace() override { return call<Rpc_dataspace>(); }
};
2011-12-22 16:19:25 +01:00
#endif /* _INCLUDE__IO_MEM_SESSION__CLIENT_H_ */