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 
9 #ifndef LLDB_INTERPRETER_OPTIONVALUES_H
10 #define LLDB_INTERPRETER_OPTIONVALUES_H
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"
20 #include "lldb/Interpreter/OptionValueFileColonLine.h"
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 
34 #endif // LLDB_INTERPRETER_OPTIONVALUES_H
35