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

33 lines
796 B
C
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Client-side log text output session interface
* \author Norman Feske
* \date 2006-09-15
*/
/*
2013-01-10 20:44:47 +00:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 15:19:25 +00: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__LOG_SESSION__CLIENT_H_
#define _INCLUDE__LOG_SESSION__CLIENT_H_
#include <log_session/capability.h>
#include <base/rpc_client.h>
namespace Genode { struct Log_session_client; }
2011-12-22 15:19:25 +00:00
struct Genode::Log_session_client : Rpc_client<Log_session>
{
explicit Log_session_client(Log_session_capability session)
: Rpc_client<Log_session>(session) { }
size_t write(String const &string) override {
return call<Rpc_write>(string); }
};
2011-12-22 15:19:25 +00:00
#endif /* _INCLUDE__LOG_SESSION__CLIENT_H_ */