mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
20 lines
364 B
C++
20 lines
364 B
C++
#pragma once
|
|
|
|
#include "KernelAllocator.hpp"
|
|
#include "utils/Rc.hpp"
|
|
|
|
namespace orbis {
|
|
struct IpmiServer : RcBase {
|
|
kstring name;
|
|
|
|
explicit IpmiServer(kstring name) : name(std::move(name)) {}
|
|
};
|
|
|
|
struct IpmiClient : RcBase {
|
|
Ref<IpmiServer> connection;
|
|
kstring name;
|
|
|
|
explicit IpmiClient(kstring name) : name(std::move(name)) {}
|
|
};
|
|
} // namespace orbis
|