//===- ExtractAPI/TypedefUnderlyingTypeResolver.cpp -------------*- 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 // //===----------------------------------------------------------------------===// /// /// \file /// This file implements UnderlyingTypeResolver. /// //===----------------------------------------------------------------------===// #include "clang/ExtractAPI/TypedefUnderlyingTypeResolver.h" #include "clang/Basic/Module.h" #include "clang/Index/USRGeneration.h" usingnamespaceclang; usingnamespaceextractapi; const NamedDecl * TypedefUnderlyingTypeResolver::getUnderlyingTypeDecl(QualType Type) const { … } SymbolReference TypedefUnderlyingTypeResolver::getSymbolReferenceForType(QualType Type, APISet &API) const { … } std::string TypedefUnderlyingTypeResolver::getUSRForType(QualType Type) const { … }