summaryrefslogtreecommitdiff
path: root/include/lldb/DataFormatters/VectorType.h
blob: b757f758e77fe40fac336a0bce2a782d995ad163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//===-- VectorType.h ------------------------------------*- 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
//
//===----------------------------------------------------------------------===//

#ifndef liblldb_VectorType_h_
#define liblldb_VectorType_h_

#include "lldb/lldb-forward.h"

namespace lldb_private {
namespace formatters {
bool VectorTypeSummaryProvider(ValueObject &, Stream &,
                               const TypeSummaryOptions &);

SyntheticChildrenFrontEnd *
VectorTypeSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP);
} // namespace formatters
} // namespace lldb_private

#endif // liblldb_VectorType_h_