[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / lib / Tooling / DumpTool / APIData.h
blob03e247a8bd955f455f685e3bf182015547b5c2ad
1 //===- APIData.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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_TOOLING_DUMPTOOL_APIDATA_H
10 #define LLVM_CLANG_LIB_TOOLING_DUMPTOOL_APIDATA_H
12 #include <string>
13 #include <vector>
15 namespace clang {
16 namespace tooling {
18 struct ClassData {
19 std::vector<std::string> ASTClassLocations;
20 std::vector<std::string> ASTClassRanges;
21 std::vector<std::string> TemplateParms;
22 std::vector<std::string> TypeSourceInfos;
23 std::vector<std::string> TypeLocs;
24 std::vector<std::string> NestedNameLocs;
25 std::vector<std::string> DeclNameInfos;
28 } // namespace tooling
29 } // namespace clang
31 #endif