//===- Arg.h - Parsed Argument Classes --------------------------*- 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 // //===----------------------------------------------------------------------===// /// /// \file /// Defines the llvm::Arg class for parsed arguments. /// //===----------------------------------------------------------------------===// #ifndef LLVM_OPTION_ARG_H #define LLVM_OPTION_ARG_H #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Option/Option.h" #include <string> namespace llvm { class raw_ostream; namespace opt { class ArgList; /// A concrete instance of a particular driver option. /// /// The Arg class encodes just enough information to be able to /// derive the argument values efficiently. class Arg { … }; } // end namespace opt } // end namespace llvm #endif // LLVM_OPTION_ARG_H