blob: e9686a5e7c24c73825f1fa7a5ff85e4db480af78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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"
namespace Service {
namespace GSP {
class GSP_LCD final : public Interface {
public:
GSP_LCD();
std::string GetPortName() const override {
return "gsp::Lcd";
}
};
} // namespace GSP
} // namespace Service
|