You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
255 B
19 lines
255 B
15 years ago
|
#ifndef KMAINWINDOWTEST_H
|
||
|
#define KMAINWINDOWTEST_H
|
||
|
|
||
|
#include <kmainwindow.h>
|
||
|
|
||
|
class MainWindow : public KMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
MainWindow();
|
||
|
|
||
|
private slots:
|
||
|
void showMessage();
|
||
|
};
|
||
|
|
||
|
#endif // KMAINWINDOWTEST_H
|
||
|
/* vim: et sw=4 ts=4
|
||
|
*/
|