Play-/Source/ElfFile.h
2018-04-30 21:01:23 +01:00

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