You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
354 B
C++
20 lines
354 B
C++
#ifndef CRESOURCEFILE_H
|
|
#define CRESOURCEFILE_H
|
|
|
|
|
|
#include "cbasicfile.h"
|
|
|
|
|
|
class cResourceFile : public cBasicFile
|
|
{
|
|
public:
|
|
cResourceFile();
|
|
virtual ~cResourceFile();
|
|
QString getDefaultPath() const;
|
|
QString getAlternatePath() const;
|
|
QString getLastResortPath() const;
|
|
QString getStoragePath() const;
|
|
};
|
|
|
|
#endif // CRESOURCEFILE_H
|