summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nwm/nwm_inf.h
blob: 0043d769c0b586724679078fa92b515978f05463 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        
                                            





                                          

                   
 
                                        
       
              
 
                                              
                          


     

                      
// 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 NWM {

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

    std::string GetPortName() const override {
        return "nwm::INF";
    }
};

} // namespace NWM
} // namespace Service