summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm_sysm.h
blob: 8afcebbbafeda5833c4bc4da0ce9427c590279c2 (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
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

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

namespace Service {
namespace PTM {

class PTM_S final : public Interface {
public:
    PTM_S();

    std::string GetPortName() const override {
        return "ptm:s";
    }
};

class PTM_Sysm final : public Interface {
public:
    PTM_Sysm();

    std::string GetPortName() const override {
        return "ptm:sysm";
    }
};

} // namespace PTM
} // namespace Service