comparison data/fileio/FileSource.h @ 711:45e3ba1d5a1f library_integration

Merge from the default branch
author Chris Cannam
date Tue, 11 Oct 2011 11:14:38 +0100
parents 579b2da21e7a
children 3b2409646cc0
comparison
equal deleted inserted replaced
710:773f228f080d 711:45e3ba1d5a1f
122 * available. 122 * available.
123 */ 123 */
124 bool isDone() const; 124 bool isDone() const;
125 125
126 /** 126 /**
127 * Return true if this FileSource is referring to a QRC resource.
128 */
129 bool isResource() const;
130
131 /**
127 * Return true if this FileSource is referring to a remote URL. 132 * Return true if this FileSource is referring to a remote URL.
128 */ 133 */
129 bool isRemote() const; 134 bool isRemote() const;
130 135
131 /** 136 /**
223 QString m_errorString; 228 QString m_errorString;
224 QString m_contentType; 229 QString m_contentType;
225 QString m_preferredContentType; 230 QString m_preferredContentType;
226 bool m_ok; 231 bool m_ok;
227 int m_lastStatus; 232 int m_lastStatus;
233 bool m_resource;
228 bool m_remote; 234 bool m_remote;
229 bool m_done; 235 bool m_done;
230 bool m_leaveLocalFile; 236 bool m_leaveLocalFile;
231 ProgressReporter *m_reporter; 237 ProgressReporter *m_reporter;
232 238