/* * This file Copyright (C) 2009-2021 Mnemosyne LLC * * It may be used under the GNU GPL versions 2 or 3 * or any future license endorsed by Mnemosyne LLC. * */ #pragma once #include #include #include #include class Session; class RelocateDialog : public Gtk::Dialog { public: ~RelocateDialog() override; TR_DISABLE_COPY_MOVE(RelocateDialog) static std::unique_ptr create( Gtk::Window& parent, Glib::RefPtr const& core, std::vector const& torrent_ids); protected: RelocateDialog(Gtk::Window& parent, Glib::RefPtr const& core, std::vector const& torrent_ids); private: class Impl; std::unique_ptr const impl_; };