File: SoundEngine.h

package info (click to toggle)
qabcs 1.0.2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,724 kB
  • sloc: cpp: 2,226; sh: 2,001; xml: 25; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SOUNDENGINE_H
#define SOUNDENGINE_H

#include <QString>

class SoundEngine {
    public:
        SoundEngine();
        static void init();
        static void playSoundFromFile(QString filename, bool async=false);
        static void playSoundFromSpeechSynthesizer(QString cmdLine, bool async=false);
        static QString findSoundfile(QString folder, QString string);

        static QString findSoundFile(QString filename, QString soundFile, QString typeSearch);

};

#endif // SOUNDENGINE_H