#ifndef SOUNDKONVERTERAPP_H #define SOUNDKONVERTERAPP_H #include "dcopinterface.h" #include class soundKonverter; /** * @short The soundKonverter application. It controlles ensures that there can only run one instance of soundKonverter. * @author Daniel Faust * @version 0.3 */ class soundKonverterApp : public KUniqueApplication { Q_OBJECT 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