mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 01:54:31 +00:00
19 lines
314 B
C++
19 lines
314 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Core::Loader {
|
|
class Elf;
|
|
}
|
|
|
|
class ElfViewer {
|
|
public:
|
|
explicit ElfViewer(Core::Loader::Elf* elf);
|
|
|
|
void Display(bool enabled);
|
|
|
|
private:
|
|
Core::Loader::Elf* elf;
|
|
};
|