mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
28 lines
401 B
C++
28 lines
401 B
C++
#ifndef _ELFFILE_H_
|
|
#define _ELFFILE_H_
|
|
|
|
#include "ELF.h"
|
|
|
|
class CElfFileContainer
|
|
{
|
|
public:
|
|
CElfFileContainer(Framework::CStream&);
|
|
virtual ~CElfFileContainer();
|
|
|
|
uint8* GetFileContent() const;
|
|
|
|
private:
|
|
uint8* m_content;
|
|
};
|
|
|
|
class CElfFile : protected CElfFileContainer, public CELF
|
|
{
|
|
public:
|
|
CElfFile(Framework::CStream&);
|
|
virtual ~CElfFile();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|