| Alexander Shaposhnikov | d911ed1 | 2019-02-02 00:38:07 +0000 | [diff] [blame^] | 1 | //===- MachOObjcopy.h -------------------------------------------*- C++ -*-===// | 
|  | 2 | // | 
|  | 3 | //                      The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 |  | 
|  | 10 | #ifndef LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H | 
|  | 11 | #define LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H | 
|  | 12 |  | 
|  | 13 | namespace llvm { | 
|  | 14 | class Error; | 
|  | 15 |  | 
|  | 16 | namespace object { | 
|  | 17 | class MachOObjectFile; | 
|  | 18 | class MachOUniversalBinary; | 
|  | 19 | } // end namespace object | 
|  | 20 |  | 
|  | 21 | namespace objcopy { | 
|  | 22 | struct CopyConfig; | 
|  | 23 | class Buffer; | 
|  | 24 |  | 
|  | 25 | namespace macho { | 
|  | 26 | Error executeObjcopyOnBinary(const CopyConfig &Config, | 
|  | 27 | object::MachOObjectFile &In, Buffer &Out); | 
|  | 28 | } // end namespace macho | 
|  | 29 | } // end namespace objcopy | 
|  | 30 | } // end namespace llvm | 
|  | 31 |  | 
|  | 32 | #endif // LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H |