blob: b8c2ae095129eeb68c07c63467f3da59d4c3ea65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef SKYRIMDATAARCHIVES_H
#define SKYRIMDATAARCHIVES_H
#include <QDir>
#include <QString>
#include <QStringList>
#include <gamebryodataarchives.h>
#include <iprofile.h>
class SkyrimDataArchives : public GamebryoDataArchives
{
public:
using GamebryoDataArchives::GamebryoDataArchives;
virtual QStringList vanillaArchives() const override;
virtual QStringList archives(const MOBase::IProfile* profile) const override;
private:
virtual void writeArchiveList(MOBase::IProfile* profile,
const QStringList& before) override;
};
#endif // SKYRIMDATAARCHIVES_H
|