mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
17 lines
298 B
C++
17 lines
298 B
C++
#ifndef IARCHIVEEXTENSIONSERVICE_H
|
|
#define IARCHIVEEXTENSIONSERVICE_H
|
|
|
|
#include <QString>
|
|
|
|
namespace BsaPacker
|
|
{
|
|
class IArchiveExtensionService
|
|
{
|
|
public:
|
|
virtual ~IArchiveExtensionService() = default;
|
|
virtual QString GetFileExtension() const = 0;
|
|
};
|
|
}
|
|
|
|
#endif // IARCHIVEEXTENSIONSERVICE_H
|