// 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/act/act.h" namespace Service::ACT { class ACT_U final : public Module::Interface { public: explicit ACT_U(std::shared_ptr act); private: SERVICE_SERIALIZATION(ACT_U, act, Module) }; } // namespace Service::ACT BOOST_CLASS_EXPORT_KEY(Service::ACT::ACT_U) BOOST_SERIALIZATION_CONSTRUCT(Service::ACT::ACT_U)