Play-/Source/ElfFile.h

26 lines
384 B
C
Raw Normal View History

2022-03-13 16:13:38 -04:00
#pragma once
#include "ELF.h"
2022-03-13 16:13:38 -04:00
#include "Stream.h"
class CElfFileContainer
{
public:
2018-04-30 21:01:23 +01:00
CElfFileContainer(Framework::CStream&);
virtual ~CElfFileContainer();
2018-04-30 21:01:23 +01:00
uint8* GetFileContent() const;
private:
2018-04-30 21:01:23 +01:00
uint8* m_content;
};
class CElfFile : protected CElfFileContainer, public CELF
{
public:
2018-04-30 21:01:23 +01:00
CElfFile(Framework::CStream&);
virtual ~CElfFile();
private:
};