summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/pm_app.h
blob: 151c69f3d8a76fa39205d844a63133ebda29e0c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        
                                            





                                          

                   
 
                                       
       
             
 




                                              

                      
// 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 Service {
namespace PM {

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

    std::string GetPortName() const override {
        return "pm:app";
    }
};

} // namespace PM
} // namespace Service