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

#ifndef MAIN_H
#define MAIN_H

/* OPIE */
#include <opie2/ofilenotify.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& );

  private:
    Opie::Core::ODirNotification* tmpfoo;
};

#endif