| 9 | #include <QString> |
| 10 | |
| 11 | FileAccess::FileAccess(const QString& name, bool bWantToWrite) |
| 12 | { |
| 13 | assert(!bWantToWrite); |
| 14 | |
| 15 | m_name = name; |
| 16 | } |
| 17 | |
| 18 | // FileAccess( const QString& name, bool bWantToWrite=false ); // name: local file or dirname or url (when supported) |
| 19 | // void setFile( const QString& name, bool bWantToWrite=false ); |
nothing calls this directly
no outgoing calls
no test coverage detected