1//===--- InstallAPIOptions.h ------------------------------------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_FRONTEND_INSTALLAPIOPTIONS_H
10#define LLVM_CLANG_FRONTEND_INSTALLAPIOPTIONS_H
11
12#include "llvm/TextAPI/PackedVersion.h"
13
14namespace clang {
15
16/// InstallAPIOptions - Options for controlling InstallAPI verification and
17/// TextAPI output.
18class InstallAPIOptions {
19public:
20 /// The install name which is apart of the library's ID.
21 std::string InstallName;
22
23 /// The current version which is apart of the library's ID.
24 llvm::MachO::PackedVersion CurrentVersion;
25};
26} // namespace clang
27
28#endif
29

source code of clang/include/clang/Frontend/InstallAPIOptions.h