diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:09:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:09:31 +0000 |
commit | f2cfda2a54780868dfe0af7bd652fcd4906547da (patch) | |
tree | c6ac23545528f5701818424f2af5f79ce3665e6c /src/soundkonverterapp.h | |
download | soundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.tar.gz soundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.zip |
Added KDE3 version of SoundKonverter
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1097614 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/soundkonverterapp.h')
-rwxr-xr-x | src/soundkonverterapp.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/soundkonverterapp.h b/src/soundkonverterapp.h new file mode 100755 index 0000000..77e5b9f --- /dev/null +++ b/src/soundkonverterapp.h @@ -0,0 +1,37 @@ + + +#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 +{ + 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 |