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

* change some QStrings to std::strings etc
author Chris Cannam
date Thu, 09 Aug 2007 16:29:29 +0000
parents e2fdcf9d35c5
children 92e8dbde73cd
line wrap: on
line diff
--- a/data/fileio/QuickTimeFileReader.h	Thu Aug 09 14:40:03 2007 +0000
+++ b/data/fileio/QuickTimeFileReader.h	Thu Aug 09 16:29:29 2007 +0000
@@ -37,14 +37,14 @@
         DecodeThreaded // decode in a background thread after construction
     };
 
-    QuickTimeFileReader(QString path, DecodeMode decodeMode,
+    QuickTimeFileReader(std::string path,
+                        DecodeMode decodeMode,
                         CacheMode cacheMode);
     virtual ~QuickTimeFileReader();
 
-    virtual QString getError() const { return m_error; }
-    virtual QString getTitle() const { return m_title; }
+    virtual std::string getTitle() const { return m_title; }
     
-    static void getSupportedExtensions(std::set<QString> &extensions);
+    static void getSupportedExtensions(std::set<std::string> &extensions);
 
     virtual int getDecodeCompletion() const { return m_completion; }
 
@@ -53,9 +53,8 @@
     }
 
 protected:
-    QString m_path;
-    QString m_error;
-    QString m_title;
+    std::string m_path;
+    std::string m_title;
 
     class D;
     D *m_d;