1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef ELF_FORMAT_HPP #define ELF_FORMAT_HPP namespace elf { enum struct format { elf32, elf64, }; } // namespace elf #endif