mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
30 lines
465 B
C
30 lines
465 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
|