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