summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/qtm/qtm_sp.h
blob: 0ae0618fc4c34ba0aa8516491fa22ab9a45949ee (plain) (tree)





















                                              
// Copyright 2016 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 QTM {

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

    std::string GetPortName() const override {
        return "qtm:sp";
    }
};

} // namespace QTM
} // namespace Service