diff data/fileio/AudioFileReaderFactory.h @ 285:20028c634494

* change some QStrings to std::strings etc
author Chris Cannam
date Thu, 09 Aug 2007 16:29:29 +0000
parents 1a42221a1522
children 92e8dbde73cd
line wrap: on
line diff
--- a/data/fileio/AudioFileReaderFactory.h	Thu Aug 09 14:40:03 2007 +0000
+++ b/data/fileio/AudioFileReaderFactory.h	Thu Aug 09 16:29:29 2007 +0000
@@ -16,7 +16,7 @@
 #ifndef _AUDIO_FILE_READER_FACTORY_H_
 #define _AUDIO_FILE_READER_FACTORY_H_
 
-#include <QString>
+#include <string>
 
 class AudioFileReader;
 
@@ -28,7 +28,7 @@
      * in a format suitable for use with QFileDialog.  For example,
      * "*.wav *.aiff *.ogg".
      */
-    static QString getKnownExtensions();
+    static std::string getKnownExtensions();
 
     /**
      * Return an audio file reader initialised to the file at the
@@ -36,7 +36,7 @@
      * available or the file cannot be opened.
      * Caller owns the returned object and must delete it after use.
      */
-    static AudioFileReader *createReader(QString path);
+    static AudioFileReader *createReader(std::string path);
 };
 
 #endif