mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
19c13877ca
Issue #5227
24 lines
583 B
C++
24 lines
583 B
C++
/*
|
|
* \brief Uplink session capability type
|
|
* \author Martin Stein
|
|
* \date 2020-11-30
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2020 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _UPLINK_SESSION__CAPABILITY_H_
|
|
#define _UPLINK_SESSION__CAPABILITY_H_
|
|
|
|
/* Genode includes */
|
|
#include <base/capability.h>
|
|
#include <uplink_session/uplink_session.h>
|
|
|
|
namespace Uplink { using Session_capability = Genode::Capability<Session>; }
|
|
|
|
#endif /* _UPLINK_SESSION__CAPABILITY_H_ */
|