// Copyright 2014 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include "core/hle/service/frd/frd.h" namespace Service::FRD { class FRD_U final : public Module::Interface { public: explicit FRD_U(std::shared_ptr frd); private: SERVICE_SERIALIZATION(FRD_U, frd, Module) }; } // namespace Service::FRD BOOST_CLASS_EXPORT_KEY(Service::FRD::FRD_U) BOOST_SERIALIZATION_CONSTRUCT(Service::FRD::FRD_U)