1a954b2a59
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
28 lines
545 B
C++
28 lines
545 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Sockets {
|
|
|
|
class ETHC_C final : public ServiceFramework<ETHC_C> {
|
|
public:
|
|
explicit ETHC_C(Core::System& system_);
|
|
~ETHC_C() override;
|
|
};
|
|
|
|
class ETHC_I final : public ServiceFramework<ETHC_I> {
|
|
public:
|
|
explicit ETHC_I(Core::System& system_);
|
|
~ETHC_I() override;
|
|
};
|
|
|
|
} // namespace Service::Sockets
|