rpc: Fix class hierarchy. (#6694)

This commit is contained in:
Steveice10 2023-07-13 16:29:54 -07:00 committed by GitHub
parent c10ffda91f
commit 0bedb28bdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 12 deletions

View file

@ -33,7 +33,7 @@ class DspInterface;
}
namespace Core::RPC {
class RPCServer;
class Server;
}
namespace Service {
@ -384,7 +384,7 @@ private:
std::shared_ptr<Frontend::ImageInterface> registered_image_interface;
/// RPC Server for scripting support
std::unique_ptr<RPC::RPCServer> rpc_server;
std::unique_ptr<RPC::Server> rpc_server;
std::unique_ptr<Service::FS::ArchiveManager> archive_manager;