aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm/ptm_u.h
blob: 213972242bedc6adaec207e37808734424149368 (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
// Copyright 2014 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_U final : public Module::Interface {
public:
    explicit PTM_U(std::shared_ptr<Module> ptm);

private:
    SERVICE_SERIALIZATION(PTM_U, ptm, Module)
};

} // namespace Service::PTM

BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_U)
BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_U)