aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt/ns_s.h
blob: eaa0ad9d3775e31f6cc3d5c35be7742824f3f035 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/hle/kernel/kernel.h"
#include "core/hle/service/apt/apt.h"
#include "core/hle/service/service.h"

namespace Service::NS {

/// Interface to "ns:s" service
class NS_S final : public Service::APT::Module::NSInterface {
public:
    explicit NS_S(std::shared_ptr<Service::APT::Module> apt);

private:
    SERVICE_SERIALIZATION(NS_S, apt, Service::APT::Module)
};

} // namespace Service::NS

BOOST_CLASS_EXPORT_KEY(Service::NS::NS_S)
BOOST_SERIALIZATION_CONSTRUCT(Service::NS::NS_S)