5b0a9f8ba8
Applies the override specifier where applicable. In the case of destructors that are defaulted in their definition, they can simply be removed. This also removes the unnecessary inclusions being done in audin_u and audrec_u, given their close proximity.
22 lines
448 B
C++
22 lines
448 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 Service::Nvidia {
|
|
|
|
class NVMEMP final : public ServiceFramework<NVMEMP> {
|
|
public:
|
|
NVMEMP();
|
|
~NVMEMP() override;
|
|
|
|
private:
|
|
void Cmd0(Kernel::HLERequestContext& ctx);
|
|
void Cmd1(Kernel::HLERequestContext& ctx);
|
|
};
|
|
|
|
} // namespace Service::Nvidia
|