blob: 841e792fe2aadd51cefaedb2ea48c306adacb459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef NULLMODDTO_H
#define NULLMODDTO_H
#include <bsapacker/IModDto.h>
#include <QString>
namespace BsaPacker
{
class NullModDto : public IModDto
{
public:
[[nodiscard]] QString ArchiveExtension() const override;
[[nodiscard]] QString ArchiveName() const override;
[[nodiscard]] QString Directory() const override;
[[nodiscard]] QString ModForename() const override;
[[nodiscard]] int NexusId() const override;
};
} // namespace BsaPacker
#endif // NULLMODDTO_H
|