mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 17:10:21 +00:00
97e5401808
git-svn-id: http://svn.purei.org/purei/trunk@1018 b36208d7-6611-0410-8bec-b1987f11c4a2
30 lines
415 B
C++
30 lines
415 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
|