forked from UplinkCoder/d-tui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.d
61 lines (57 loc) · 1.96 KB
/
package.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* D Text User Interface library - main import file
*
* Version: $Id$
*
* Author: Kevin Lamonte, <a href="mailto:[email protected]">[email protected]</a>
*
* License: LGPLv3 or later
*
* Copyright: This module is licensed under the GNU Lesser General
* Public License Version 3. Please see the file "COPYING" in this
* directory for more information about the GNU Lesser General Public
* License Version 3.
*
* Copyright (C) 2013 Kevin Lamonte
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see
* http://www.gnu.org/licenses/, or write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
module tui;
// Description ---------------------------------------------------------------
// Imports -------------------------------------------------------------------
public import tui.codepage;
public import tui.base;
public import tui.tapplication;
public import tui.tbutton;
public import tui.tcheckbox;
public import tui.tdirlist;
public import tui.teditor;
public import tui.tfield;
public import tui.tfileopen;
public import tui.tlabel;
public import tui.tmenu;
public import tui.tmessagebox;
public import tui.tprogress;
public import tui.tradio;
version(Posix) {
public import tui.tterminal;
}
public import tui.ttext;
public import tui.ttimer;
public import tui.ttreeview;
public import tui.twidget;
public import tui.twindow;