//===- GOFF.h - GOFF object file implementation -----------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file declares the GOFFObjectFile class. // Record classes and derivatives are also declared and implemented. // //===----------------------------------------------------------------------===// #ifndef LLVM_OBJECT_GOFF_H #define LLVM_OBJECT_GOFF_H #include "llvm/ADT/SmallString.h" #include "llvm/ADT/SmallVector.h" #include "llvm/BinaryFormat/GOFF.h" #include "llvm/Support/Debug.h" #include "llvm/Support/Endian.h" #include "llvm/Support/raw_ostream.h" namespace llvm { namespace object { /// \brief Represents a GOFF physical record. /// /// Specifies protected member functions to manipulate the record. These should /// be called from deriving classes to change values as that record specifies. class Record { … }; class TXTRecord : public Record { … }; class HDRRecord : public Record { … }; class ESDRecord : public Record { … }; class ENDRecord : public Record { … }; } // end namespace object } // end namespace llvm #endif