blob: 6efc9e1ad064ce3a8118c53523f416773d68b32d [file] [log] [blame]
Andrew Walbran3d2c1972020-04-07 12:24:26 +01001//===-- 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 Deprezf4ef2d02021-04-20 13:36:24 +02009#ifndef LLDB_INTERPRETER_OPTIONVALUES_H
10#define LLDB_INTERPRETER_OPTIONVALUES_H
Andrew Walbran3d2c1972020-04-07 12:24:26 +010011
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 Deprezf4ef2d02021-04-20 13:36:24 +020020#include "lldb/Interpreter/OptionValueFileColonLine.h"
Andrew Walbran3d2c1972020-04-07 12:24:26 +010021#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 Deprezf4ef2d02021-04-20 13:36:24 +020034#endif // LLDB_INTERPRETER_OPTIONVALUES_H