aboutsummaryrefslogtreecommitdiff
path: root/libs/bsapacker/src/PackerDialogFactory.h
blob: fcc03d8cd250e831392b73c3006af3b93b87be9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PACKERDIALOGFACTORY_H
#define PACKERDIALOGFACTORY_H

#include <bsapacker/IPackerDialogFactory.h>

namespace BsaPacker
{
	class PackerDialogFactory : public IPackerDialogFactory
	{
	public:
		~PackerDialogFactory() override = default;
		std::unique_ptr<IPackerDialog> Create() const override;
	};
}

#endif // PACKERDIALOGFACTORY_H