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