summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nfc/nfc_u.h
blob: eb750731462bf932acdd9cd5e96f6833b9fb162b (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 NFC {

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

    std::string GetPortName() const override {
        return "nfc:u";
    }
};

} // namespace NFC
} // namespace Service