aboutsummaryrefslogtreecommitdiff
path: root/libs/game_features/src/bsainvalidation.h
blob: e2c9d9b43835bedd19280a542291e1c370ec8e30 (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
#ifndef BSAINVALIDATION_H
#define BSAINVALIDATION_H

namespace MOBase { class IProfile; }

class QString;

class BSAInvalidation
{
public:

  virtual ~BSAInvalidation() {}

  virtual bool isInvalidationBSA(const QString &bsaName) = 0;

  virtual void deactivate(MOBase::IProfile *profile) = 0;

  virtual void activate(MOBase::IProfile *profile) = 0;

  virtual bool prepareProfile(MOBase::IProfile *profile) = 0;

};

#endif // BSAINVALIDATION_H