QTfrontend/util/HWDataManager.h
changeset 6167 728cabee2c9f
parent 6165 6fe3e922246e
child 6168 6f301dac12ff
equal deleted inserted replaced
6166:701c5b8fac56 6167:728cabee2c9f
    61                           QDir::Filters filters = QDir::NoFilter,
    61                           QDir::Filters filters = QDir::NoFilter,
    62                           const QStringList & nameFilters = QStringList("*")
    62                           const QStringList & nameFilters = QStringList("*")
    63                          ) const;
    63                          ) const;
    64 
    64 
    65     /**
    65     /**
    66      * @brief Creates a file object for the desired data path and
    66      * @brief Returns path for the desires data file.
    67      * returns a pointer to it.
       
    68      * 
    67      * 
    69      * Use this method if you want to read an existing data file.
    68      * Use this method if you want to read an existing data file.
    70      * 
    69      * 
    71      * @param relativeDataFilePath path to the data file.
    70      * @param relativeDataFilePath relative path of the data file.
    72      * @return respective <code>QFile</code> pointer, the file may not exist.
    71      * @return real path to the file.
    73      */
    72      */
    74     QFile * findFileForRead(const QString & relativeDataFilePath) const;
    73     QString findFileForRead(const QString & relativeDataFilePath) const;
    75 
    74 
    76 
    75 
    77     /**
    76     /**
    78      * @brief Creates a file object for the desired data path and
    77      * @brief Creates a file object for the desired data path and
    79      * returns a pointer to it.
    78      * returns a pointer to it.