//===--- Record.h - struct and class metadata for the VM --------*- 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 // //===----------------------------------------------------------------------===// // // A record is part of a program to describe the layout and methods of a struct. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_INTERP_RECORD_H #define LLVM_CLANG_AST_INTERP_RECORD_H #include "Descriptor.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclCXX.h" namespace clang { namespace interp { class Program; /// Structure/Class descriptor. class Record final { … }; } // namespace interp } // namespace clang #endif