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








                                                                                                    
                    


                   
                               










                                                              
                                     


                          


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

#pragma once

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

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace GSP_GPU

namespace GSP_GPU {

/// Interface to "srv:" service
class Interface : public Service::Interface {
public:

    Interface();

    ~Interface();

    /**
     * Gets the string port name used by CTROS for the service
     * @return Port name of service
     */
    const char *GetPortName() const {
        return "gsp::Gpu";
    }

};

} // namespace