aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/am_net.h
blob: b73610df9e33e79671de6fbb3ce51dbfd239362a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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<Module> 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)