blob: 1e01fdb2e6797f32f29468c2c0adb4eb9667af38 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include "core/hle/service/ptm/ptm.h"
namespace Service::PTM {
class PTM_S_Common : public Module::Interface {
public:
explicit PTM_S_Common(std::shared_ptr<Module> ptm, const char* name);
};
class PTM_S final : public PTM_S_Common {
public:
explicit PTM_S(std::shared_ptr<Module> ptm);
private:
SERVICE_SERIALIZATION(PTM_S, ptm, Module)
};
class PTM_Sysm final : public PTM_S_Common {
public:
explicit PTM_Sysm(std::shared_ptr<Module> ptm);
private:
SERVICE_SERIALIZATION(PTM_Sysm, ptm, Module)
};
} // namespace Service::PTM
BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_S)
BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_Sysm)
BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_S)
BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_Sysm)
|