//===- llvm/TextAPI/PackedVersion.h - PackedVersion -------------*- 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 // //===----------------------------------------------------------------------===// // // Defines the Mach-O packed version format. // //===----------------------------------------------------------------------===// #ifndef LLVM_TEXTAPI_PACKEDVERSION_H #define LLVM_TEXTAPI_PACKEDVERSION_H #include "llvm/Support/VersionTuple.h" #include <cstdint> #include <string> #include <utility> namespace llvm { class raw_ostream; class StringRef; namespace MachO { class PackedVersion { … }; inline raw_ostream &operator<<(raw_ostream &OS, const PackedVersion &Version) { … } } // end namespace MachO. } // end namespace llvm. #endif // LLVM_TEXTAPI_PACKEDVERSION_H