summaryrefslogtreecommitdiff
path: root/examples/opiecore/onotifytest/main.h
blob: afad947473b7b7b513afaa1d4784dcd166745130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// (C) Michael 'Mickey' Lauer <mickey@Vanille.de>
// LICENSE = "GPLv2"

#ifndef MAIN_H
#define MAIN_H

/* QT */
#include <qapplication.h>
#include <qpushbutton.h>
#include <qtextstream.h>

class App : public QApplication
{
  Q_OBJECT
public:
    App( int argc, char** argv );
   ~App();

public slots:
    void triggered( const QString&, unsigned int, const QString& );
};

#endif