#ifndef PACKERDIALOGFACTORY_H #define PACKERDIALOGFACTORY_H #include namespace BsaPacker { class PackerDialogFactory : public IPackerDialogFactory { public: ~PackerDialogFactory() override = default; std::unique_ptr Create() const override; }; } #endif // PACKERDIALOGFACTORY_H