//===-- NonTrivialTypeVisitor.h - Visitor for non-trivial Types -*- 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 // //===----------------------------------------------------------------------===// // // This file defines the visitor classes that are used to traverse non-trivial // structs. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_NONTRIVIALTYPEVISITOR_H #define LLVM_CLANG_AST_NONTRIVIALTYPEVISITOR_H #include "clang/AST/Type.h" namespace clang { template <class Derived, class RetTy = void> struct DestructedTypeVisitor { … }; template <class Derived, class RetTy = void> struct DefaultInitializedTypeVisitor { … }; template <class Derived, bool IsMove, class RetTy = void> struct CopiedTypeVisitor { … }; } // end namespace clang #endif