summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/cfg/cfg_i.h
blob: a498dd5892f991b9deabe409d05a9276ba1d725a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                        
                                            













                                                                                                    
 





                                              
// Copyright 2014 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 CFG_I

namespace CFG_I {

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

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

} // namespace