aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/skyrimse/skyrimsedataarchives.h
blob: b3d70c1686069705c371faaeaf0a3a3aca7b4605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _SKYRIMSEDATAARCHIVES_H
#define _SKYRIMSEDATAARCHIVES_H

#include "gamebryodataarchives.h"
#include <QDir>
#include <QStringList>

namespace MOBase
{
class IProfile;
}

class SkyrimSEDataArchives : public GamebryoDataArchives
{
  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  // _SKYRIMSEDATAARCHIVES_H