genode/repos/base/include/session/session.h

41 lines
963 B
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Session
* \author Norman Feske
* \date 2011-05-15
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2011-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__SESSION__SESSION_H_
#define _INCLUDE__SESSION__SESSION_H_
2011-12-22 16:19:25 +01:00
/*
* Each session interface declares an RPC interface and, therefore, relies on
* the RPC framework. By including 'base/rpc.h' here, we relieve the interfaces
* from including 'base/rpc.h' in addition to 'session/session.h'.
*/
#include <base/rpc.h>
namespace Genode { class Session; }
2011-12-22 16:19:25 +01:00
/**
* Base class of session interfaces
*/
class Genode::Session
{
/*
* Each session interface must implement the class function 'service_name'
* ! static const char *service_name();
* This function returns the name of the service provided via the session
* interface.
*/
};
2011-12-22 16:19:25 +01:00
#endif /* _INCLUDE__SESSION__SESSION_H_ */