blob: 32212ae9838ac5ad2392f8a21d4ae135d8e953f7 (
plain)
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
|
/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#ifndef _INFO_TAB_H_
#define _INFO_TAB_H_
#include <info_tab_ui.h>
namespace KHotKeys
{
class Info_tab
: public Info_tab_ui
{
Q_OBJECT
public:
Info_tab( TQWidget* parent_P = NULL, const char* name_P = NULL );
public slots:
void clear_data();
};
//***************************************************************************
// Inline
//***************************************************************************
} // namespace KHotKeys
#endif
|