2015-01-13 20:56:00 -08:00
|
|
|
// Copyright 2015 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"
|
|
|
|
|
2016-12-10 04:51:50 -08:00
|
|
|
namespace Service {
|
|
|
|
namespace GSP {
|
2015-01-13 20:56:00 -08:00
|
|
|
|
2016-12-10 04:51:50 -08:00
|
|
|
class GSP_LCD final : public Interface {
|
2015-01-13 20:56:00 -08:00
|
|
|
public:
|
2016-12-10 04:51:50 -08:00
|
|
|
GSP_LCD();
|
2015-01-13 20:56:00 -08:00
|
|
|
|
|
|
|
std::string GetPortName() const override {
|
|
|
|
return "gsp::Lcd";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-10 04:51:50 -08:00
|
|
|
} // namespace GSP
|
|
|
|
} // namespace Service
|