diff -r 000000000000 -r 83f4b4db085c toolsandutils/e32tools/checklib/object/elf/elf_section_header.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolsandutils/e32tools/checklib/object/elf/elf_section_header.h Tue Feb 02 01:39:43 2010 +0200 @@ -0,0 +1,60 @@ +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef ELF_SECTION_HEADER_H +#define ELF_SECTION_HEADER_H + +#include "elftools/inc/elfdefs.h" +#include + +namespace elf +{ + class Section_header + { + public: + Section_header(const char*, const char*); + + uint32_t get_name(); + + bool is_type_null() const; + bool is_type_progbits() const; + bool is_type_symtab() const; + bool is_type_dynsym() const; + bool is_type_strtab() const; + bool is_type_rela() const; + bool is_type_nobits() const; + bool is_type_rel() const; + + bool is_flags_write() const; + bool is_flags_alloc() const; + bool is_flags_execinstr() const; + + uint32_t get_addr(); + uint32_t get_offset() const; + uint32_t get_size() const; + uint32_t get_link(); + uint32_t get_info(); + uint32_t get_addralign(); + uint32_t get_entsize() const; + + private: + const Elf32_Shdr* m_data; + }; + +} // namespace elf + + +#endif +