//===- XCOFFReader.cpp ----------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "XCOFFReader.h" namespace llvm { namespace objcopy { namespace xcoff { usingnamespaceobject; Error XCOFFReader::readSections(Object &Obj) const { … } Error XCOFFReader::readSymbols(Object &Obj) const { … } Expected<std::unique_ptr<Object>> XCOFFReader::create() const { … } } // end namespace xcoff } // end namespace objcopy } // end namespace llvm