Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 1 | //===-- OptionValues.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 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame^] | 9 | #ifndef LLDB_INTERPRETER_OPTIONVALUES_H |
| 10 | #define LLDB_INTERPRETER_OPTIONVALUES_H |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 11 | |
| 12 | #include "lldb/Interpreter/OptionValue.h" |
| 13 | #include "lldb/Interpreter/OptionValueArch.h" |
| 14 | #include "lldb/Interpreter/OptionValueArgs.h" |
| 15 | #include "lldb/Interpreter/OptionValueArray.h" |
| 16 | #include "lldb/Interpreter/OptionValueBoolean.h" |
| 17 | #include "lldb/Interpreter/OptionValueChar.h" |
| 18 | #include "lldb/Interpreter/OptionValueDictionary.h" |
| 19 | #include "lldb/Interpreter/OptionValueEnumeration.h" |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame^] | 20 | #include "lldb/Interpreter/OptionValueFileColonLine.h" |
Andrew Walbran | 3d2c197 | 2020-04-07 12:24:26 +0100 | [diff] [blame] | 21 | #include "lldb/Interpreter/OptionValueFileSpec.h" |
| 22 | #include "lldb/Interpreter/OptionValueFileSpecList.h" |
| 23 | #include "lldb/Interpreter/OptionValueFormat.h" |
| 24 | #include "lldb/Interpreter/OptionValueFormatEntity.h" |
| 25 | #include "lldb/Interpreter/OptionValueLanguage.h" |
| 26 | #include "lldb/Interpreter/OptionValuePathMappings.h" |
| 27 | #include "lldb/Interpreter/OptionValueProperties.h" |
| 28 | #include "lldb/Interpreter/OptionValueRegex.h" |
| 29 | #include "lldb/Interpreter/OptionValueSInt64.h" |
| 30 | #include "lldb/Interpreter/OptionValueString.h" |
| 31 | #include "lldb/Interpreter/OptionValueUInt64.h" |
| 32 | #include "lldb/Interpreter/OptionValueUUID.h" |
| 33 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame^] | 34 | #endif // LLDB_INTERPRETER_OPTIONVALUES_H |