1 
2 
3 #ifndef SOUNDKONVERTERAPP_H
4 #define SOUNDKONVERTERAPP_H
5 
6 
7 #include <kuniqueapplication.h>
8 
9 class soundKonverter;
10 
11 /**
12  * @short The soundKonverter application. It controlles ensures that there can only run one instance of soundKonverter.
13  * @author Daniel Faust <hessijames@gmail.com>
14  * @version 0.3
15  */
16 class soundKonverterApp : public KUniqueApplication
17 {
18     Q_OBJECT
19 public:
20     /** Constructor */
21     soundKonverterApp();
22 
23     /** Destructor */
24     ~soundKonverterApp();
25 
26     /** This function is called, when a new instance of soundKonverter should be created */
27     virtual int newInstance();
28 
29 // private:
30     soundKonverter *mainWindow;
31 };
32 
33 #endif // SOUNDKONVERTERAPP_H
34