| Alexander Shaposhnikov | d911ed1 | 2019-02-02 00:38:07 +0000 | [diff] [blame] | 1 | //===- MachOObjcopy.h -------------------------------------------*- C++ -*-===// |
| 2 | // |
| Chandler Carruth | 127252b | 2019-02-11 08:25:19 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Alexander Shaposhnikov | d911ed1 | 2019-02-02 00:38:07 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H |
| 10 | #define LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H |
| 11 | |
| 12 | namespace llvm { |
| 13 | class Error; |
| 14 | |
| 15 | namespace object { |
| 16 | class MachOObjectFile; |
| 17 | class MachOUniversalBinary; |
| 18 | } // end namespace object |
| 19 | |
| 20 | namespace objcopy { |
| 21 | struct CopyConfig; |
| 22 | class Buffer; |
| 23 | |
| 24 | namespace macho { |
| 25 | Error executeObjcopyOnBinary(const CopyConfig &Config, |
| 26 | object::MachOObjectFile &In, Buffer &Out); |
| 27 | } // end namespace macho |
| 28 | } // end namespace objcopy |
| 29 | } // end namespace llvm |
| 30 | |
| 31 | #endif // LLVM_TOOLS_OBJCOPY_MACHOOBJCOPY_H |