mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 04:58:27 +00:00
16 lines
160 B
C++
16 lines
160 B
C++
|
#include "Linker.h"
|
||
|
|
||
|
Linker::Linker()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Linker::~Linker()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Module* Linker::LoadModule(const std::string& elf_name)
|
||
|
{
|
||
|
auto* m = new Module;
|
||
|
|
||
|
return m;
|
||
|
}
|