// (C) Michael 'Mickey' Lauer // LICENSE = "GPLv2" #ifndef MAIN_H #define MAIN_H /* QT */ #include #include #include class App : public QApplication { Q_OBJECT public: App( int argc, char** argv ); ~App(); public slots: void triggered( const QString&, unsigned int, const QString& ); }; #endif