summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nwm/nwm_soc.h
blob: 594941d7ef8aba53b79c0f8aef90797fc4329d91 (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_SOC final : public Interface {
public:
    NWM_SOC();

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

} // namespace NWM
} // namespace Service