summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/gsp.h
blob: 0a9d452f62485d0ac41c046ecf0e90187644cab1 (plain) (tree)

































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

#pragma once

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

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace Service

namespace GSP_GPU {

class Interface : public Service::Interface {
public:

    Interface();

    ~Interface();

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

private:

    DISALLOW_COPY_AND_ASSIGN(Interface);
};

} // namespace