Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-c++-kde / hellowindow.h
blob6457a487d512108fdd1de686b520f1664f54a33b
1 // Example for use of GNU gettext.
2 // Copyright (C) 2003 Free Software Foundation, Inc.
3 // This file is published under the GNU General Public License.
5 /* Declare KMainWindow. */
6 #include <kmainwindow.h>
7 /* Declare QPushButton. */
8 #include <qpushbutton.h>
10 // The main window widget.
12 class HelloMainWindow : public KMainWindow
14 Q_OBJECT
15 public:
16 HelloMainWindow (QWidget * parent = NULL, const char * name = NULL);
17 ~HelloMainWindow ();
18 public:
19 QPushButton *button;