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.
soundkonverter/src/soundkonverterapp.h

39 lines
714 B

#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
{
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