blob: d90b2867a4b071118d6b84e0fd1178449d781e59 [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
9#ifndef liblldb_OptionValues_h_
10#define liblldb_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/OptionValueFileSpec.h"
21#include "lldb/Interpreter/OptionValueFileSpecList.h"
22#include "lldb/Interpreter/OptionValueFormat.h"
23#include "lldb/Interpreter/OptionValueFormatEntity.h"
24#include "lldb/Interpreter/OptionValueLanguage.h"
25#include "lldb/Interpreter/OptionValuePathMappings.h"
26#include "lldb/Interpreter/OptionValueProperties.h"
27#include "lldb/Interpreter/OptionValueRegex.h"
28#include "lldb/Interpreter/OptionValueSInt64.h"
29#include "lldb/Interpreter/OptionValueString.h"
30#include "lldb/Interpreter/OptionValueUInt64.h"
31#include "lldb/Interpreter/OptionValueUUID.h"
32
33#endif // liblldb_OptionValues_h_