summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nwm/nwm_sap.h
blob: f692e06d49cba22c13979ec7c71de5e6e49a664e (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_SAP final : public Interface {
public:
    NWM_SAP();

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

} // namespace NWM
} // namespace Service