summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/ac/ac_i.h
blob: 465bba59cebe8d56468cf0367c1b98b330a9086b (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 AC {

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

    std::string GetPortName() const override {
        return "ac:i";
    }
};

} // namespace AC
} // namespace Service