34 lines
663 B
C++
34 lines
663 B
C++
// vi:set ft=cpp: -*- Mode: C++ -*-
|
|
/*
|
|
* (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
|
|
* Alexander Warg <warg@os.inf.tu-dresden.de>
|
|
* economic rights: Technische Universität Dresden (Germany)
|
|
*
|
|
* License: see LICENSE.spdx (in this directory or the directories above)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <l4/re/video/goos>
|
|
#include <l4/re/event>
|
|
|
|
namespace L4Re {
|
|
|
|
/**
|
|
* \defgroup api_l4re_console Console API
|
|
* \ingroup api_l4re
|
|
* \brief Console interface.
|
|
*/
|
|
|
|
|
|
/**
|
|
* \brief Console class.
|
|
* \ingroup api_l4re_console
|
|
*/
|
|
class L4_EXPORT Console :
|
|
public L4::Kobject_2t<Console, Video::Goos, Event, L4::PROTO_EMPTY>
|
|
{};
|
|
|
|
}
|
|
|