mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
17 lines
365 B
C++
17 lines
365 B
C++
#ifndef IDUMMYPLUGINSERVICEFACTORY_H
|
|
#define IDUMMYPLUGINSERVICEFACTORY_H
|
|
|
|
#include <bsapacker/IDummyPluginService.h>
|
|
|
|
namespace BsaPacker
|
|
{
|
|
class IDummyPluginServiceFactory
|
|
{
|
|
public:
|
|
virtual ~IDummyPluginServiceFactory() = default;
|
|
[[nodiscard]] virtual std::unique_ptr<IDummyPluginService> Create() const = 0;
|
|
};
|
|
}
|
|
|
|
#endif // IDUMMYPLUGINSERVICEFACTORY_H
|