summaryrefslogtreecommitdiffstats
path: root/src/soundkonverterapp.h
blob: 4f3758f50404058a586cc22be1ff95a4164eee4d (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 <[email protected]>
 * @version 0.3
 */
class soundKonverterApp : public KUniqueApplication
{
    TQ_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