mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
21 lines
480 B
C++
21 lines
480 B
C++
// Example for use of GNU gettext.
|
|
// Copyright (C) 2003 Free Software Foundation, Inc.
|
|
// This file is published under the GNU General Public License.
|
|
|
|
/* Declare KMainWindow. */
|
|
#include <kmainwindow.h>
|
|
/* Declare QPushButton. */
|
|
#include <qpushbutton.h>
|
|
|
|
// The main window widget.
|
|
|
|
class HelloMainWindow : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
HelloMainWindow (QWidget * parent = NULL, const char * name = NULL);
|
|
~HelloMainWindow ();
|
|
public:
|
|
QPushButton *button;
|
|
};
|