blob: a87e5266f2dc93fac2edb5203088a9c678408b0c (
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
30
31
32
33
34
35
36
37
38
|
#ifndef SOUNDKONVERTERAPP_H
#define SOUNDKONVERTERAPP_H
#include "dcopinterface.h"
#include <kuniqueapplication.h>
class soundKonverter;
/**
* @short The soundKonverter application. It controlles ensures that there can only run one instance of soundKonverter.
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
class soundKonverterApp : public KUniqueApplication
{
Q_OBJECT
public:
/**
* Constructor.
*/
soundKonverterApp();
/**
* Destructor
*/
virtual ~soundKonverterApp();
/**
* This function is called, when a new instance of soundKonverter should be created.
*/
virtual int newInstance();
};
#endif // SOUNDKONVERTERAPP_H
|