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