You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
710 B
38 lines
710 B
15 years ago
|
|
||
|
|
||
|
#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
|