1 //===-- runtime/derived.h -------------------------------------------------===// 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 //===----------------------------------------------------------------------===// 8 9 #ifndef FLANG_RUNTIME_DERIVED_H_ 10 #define FLANG_RUNTIME_DERIVED_H_ 11 12 namespace Fortran::runtime::typeInfo { 13 class DerivedType; 14 } 15 16 namespace Fortran::runtime { 17 class Descriptor; 18 void Destroy(const Descriptor &, bool finalize, const typeInfo::DerivedType &); 19 } // namespace Fortran::runtime 20 #endif // FLANG_RUNTIME_FINAL_H_ 21