First check-in of the Qtopia build system. See qtopia-build/README.
[quassel.git] / src / qtopia / example.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2000-$THISYEAR$ $TROLLTECH$. All rights reserved.
4 **
5 ** This file is part of the $MODULE$ of the Qtopia Toolkit.
6 **
7 ** $TROLLTECH_DUAL_LICENSE$
8 **
9 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
10 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 **
12 ****************************************************************************/
13
14 #ifndef EXAMPLE_H
15 #define EXAMPLE_H
16 #include "ui_examplebase.h"
17
18 class ExampleBase : public QWidget, public Ui_ExampleBase
19 {
20 public:
21     ExampleBase( QWidget *parent = 0, Qt::WFlags f = 0 );
22     virtual ~ExampleBase();
23 };
24
25 class Example : public ExampleBase
26
27     Q_OBJECT
28 public:
29     Example( QWidget *parent = 0, Qt::WFlags f = 0 );
30     virtual ~Example();
31
32 private slots:
33     void goodBye();
34 };
35
36 #endif // EXAMPLE_H