// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include #include "common/uuid.h" namespace Core::Frontend { class ProfileSelectApplet { public: virtual ~ProfileSelectApplet(); virtual void SelectProfile(std::function)> callback) const = 0; }; class DefaultProfileSelectApplet final : public ProfileSelectApplet { public: void SelectProfile(std::function)> callback) const override; }; } // namespace Core::Frontend