ELF reader refactor

Change-Id: I326747237ba605f338d3f2c91a6b682db8b75af5
This commit is contained in:
Kamil Diedrich
2018-08-13 08:33:10 +02:00
committed by sys_ocldev
parent c7a49666d5
commit 17de60254a
10 changed files with 135 additions and 401 deletions

View File

@ -25,8 +25,13 @@
#include <inttypes.h>
#include <stddef.h>
#include <vector>
namespace CLElfLib {
struct ElfException : std::exception {
};
using ElfBinaryStorage = std::vector<char>;
/******************************************************************************\
ELF Enumerates
\******************************************************************************/