mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
18 lines
314 B
C++
18 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;
|
|
};
|