summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/soc_u.h
blob: a091f597cc742a4f154d8ab5822d0d2983fd1c08 (plain) (tree)
1
2
3
4
5
6
7
8
                                        
                                            



                                          

                 









                                                                                                    
                 
 
                                              




                       
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>

#include "core/hle/service/service.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace SOC_U

namespace SOC_U {

class Interface : public Service::Interface {
public:
    Interface();
    ~Interface();

    std::string GetPortName() const override {
        return "soc:U";
    }
};

} // namespace