/* Copyright 2017 - 2021 R. Thomas * Copyright 2017 - 2021 Quarkslab * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef LIEF_ELF_H_ #define LIEF_ELF_H_ #include "LIEF/config.h" #if defined(LIEF_ELF_SUPPORT) #include "LIEF/ELF/hash.hpp" #include "LIEF/ELF/utils.hpp" #include "LIEF/ELF/enums.hpp" #include "LIEF/ELF/Parser.hpp" #include "LIEF/ELF/Header.hpp" #include "LIEF/ELF/Section.hpp" #include "LIEF/ELF/Binary.hpp" #include "LIEF/ELF/Segment.hpp" #include "LIEF/ELF/Builder.hpp" #include "LIEF/ELF/EnumToString.hpp" #include "LIEF/ELF/Relocation.hpp" #include "LIEF/ELF/DynamicEntryArray.hpp" #include "LIEF/ELF/DynamicEntryFlags.hpp" #include "LIEF/ELF/DynamicEntry.hpp" #include "LIEF/ELF/DynamicEntryLibrary.hpp" #include "LIEF/ELF/DynamicEntryRpath.hpp" #include "LIEF/ELF/DynamicEntryRunPath.hpp" #include "LIEF/ELF/DynamicSharedObject.hpp" #include "LIEF/ELF/GnuHash.hpp" #include "LIEF/ELF/Note.hpp" #include "LIEF/ELF/RelocationSizes.hpp" #include "LIEF/ELF/Symbol.hpp" #include "LIEF/ELF/SymbolVersion.hpp" #include "LIEF/ELF/SymbolVersionAux.hpp" #include "LIEF/ELF/SymbolVersionAuxRequirement.hpp" #include "LIEF/ELF/SymbolVersionDefinition.hpp" #include "LIEF/ELF/SymbolVersionRequirement.hpp" #include "LIEF/ELF/SysvHash.hpp" #include "LIEF/ELF/NoteDetails/AndroidNote.hpp" #include "LIEF/ELF/NoteDetails/NoteAbi.hpp" #include "LIEF/ELF/NoteDetails/Core.hpp" #include "LIEF/ELF/NoteDetails.hpp" #endif #endif