feat: store provider dependencies

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2025-05-03 12:25:18 +03:00
parent 8cf41be77f
commit bacce134c0
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
5 changed files with 70 additions and 4 deletions

View file

@ -152,9 +152,6 @@ class Resource : public QObject {
bool isMoreThanOneHardLink() const;
auto mod_id() const -> QString { return m_mod_id; }
void setModId(const QString& modId) { m_mod_id = modId; }
protected:
/* The file corresponding to this resource. */
QFileInfo m_file_info;
@ -165,7 +162,6 @@ class Resource : public QObject {
QString m_internal_id;
/* Name as reported via the file name. In the absence of a better name, this is shown to the user. */
QString m_name;
QString m_mod_id;
/* The type of file we're dealing with. */
ResourceType m_type = ResourceType::UNKNOWN;