2012-10-04 12:52:27 +02:00
|
|
|
/*
|
|
|
|
* \brief Terminal connection
|
|
|
|
* \author Josef Soentgen
|
|
|
|
* \date 2012-08-02
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 21:44:47 +01:00
|
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
2012-10-04 12:52:27 +02: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 _NOUX__TERMINAL_CONNECTION_H_
|
|
|
|
#define _NOUX__TERMINAL_CONNECTION_H_
|
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <base/printf.h>
|
|
|
|
#include <base/lock.h>
|
|
|
|
#include <terminal_session/connection.h>
|
|
|
|
#include <util/string.h>
|
|
|
|
|
|
|
|
/* Noux includes */
|
|
|
|
#include <noux_session/sysio.h>
|
2014-04-07 16:15:40 +02:00
|
|
|
#include <vfs/file_system.h>
|
2012-10-04 12:52:27 +02:00
|
|
|
|
|
|
|
|
2014-04-07 16:15:40 +02:00
|
|
|
namespace Noux { Terminal::Connection *terminal(); }
|
2012-10-04 12:52:27 +02:00
|
|
|
|
|
|
|
#endif /* _NOUX__TERMINAL_CONNECTION_H_ */
|