Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > e3926d74986614d65e418e14f6564106 > files > 152

gettext-devel-0.19.8.1-4.mga7.i586.rpm

// Example for use of GNU gettext.
// Copyright (C) 2003, 2015-2016 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;
};