00001 #ifndef POWERCHORD_H 00002 #define POWERCHORD_H 00003 #include "powerchordbase.h" 00004 00005 class Powerchord : public PowerchordBase 00006 { 00007 Q_OBJECT 00008 00009 public: 00010 Powerchord( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 00011 ~Powerchord(); 00012 00013 static QString appName() { return QString::fromLatin1("powerchord"); } 00014 00015 private slots: 00016 void goodBye(); 00017 }; 00018 00019 #endif // POWERCHORD_H
1.4.2