]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re/include/console
Inital import
[l4.git] / l4 / pkg / l4re / include / console
1 // vi:ft=cpp
2 /*
3  * (c) 2008-2009 Technische Universität Dresden
4  * This file is part of TUD:OS and distributed under the terms of the
5  * GNU General Public License 2.
6  * Please see the COPYING-GPL-2 file for details.
7  *
8  * As a special exception, you may use this file as part of a free software
9  * library without restriction.  Specifically, if other files instantiate
10  * templates or use macros or inline functions from this file, or you compile
11  * this file and link it with other files to produce an executable, this
12  * file does not by itself cause the resulting executable to be covered by
13  * the GNU General Public License.  This exception does not however
14  * invalidate any other reasons why the executable file might be covered by
15  * the GNU General Public License.
16  */
17
18 #pragma once
19
20 #include <l4/re/video/goos>
21 #include <l4/re/event>
22
23 namespace L4Re {
24
25 /**
26  * \defgroup api_l4re_console Console API
27  * \ingroup api_l4re
28  * \brief Console interface.
29  */
30
31
32 /**
33  * \brief Console class.
34  * \ingroup api_l4re_console
35  */
36 class L4_EXPORT Console :
37   public L4::Kobject_2t<Console, Video::Goos, Event>
38 {
39   L4_KOBJECT_DISABLE_COPY(Console)
40 };
41 }
42