aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/nehrim/nehrimdataarchives.h
blob: 2b6425c61a4c7a4c4ef24cdb4ceab02fa55b6d18 (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 NEHRIMDATAARCHIVES_H
#define NEHRIMDATAARCHIVES_H

#include <QDir>
#include <QString>
#include <QStringList>
#include <gamebryodataarchives.h>
#include <iprofile.h>

class NehrimDataArchives : 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  // NEHRIMDATAARCHIVES_H