1 //===- TransformTypes.h - Transform dialect types ---------------*- 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 //===----------------------------------------------------------------------===// 8 9 #ifndef MLIR_DIALECT_TRANSFORM_IR_TRANSFORMTYPES_H 10 #define MLIR_DIALECT_TRANSFORM_IR_TRANSFORMTYPES_H 11 12 #include "mlir/Dialect/Transform/Interfaces/TransformInterfaces.h" 13 #include "mlir/Dialect/Transform/Utils/DiagnosedSilenceableFailure.h" 14 #include "mlir/IR/Types.h" 15 #include "mlir/Support/LLVM.h" 16 17 namespace mlir { 18 class DiagnosedSilenceableFailure; 19 class Operation; 20 class Type; 21 } // namespace mlir 22 23 #define GET_TYPEDEF_CLASSES 24 #include "mlir/Dialect/Transform/IR/TransformTypes.h.inc" 25 26 #endif // MLIR_DIALECT_TRANSFORM_IR_TRANSFORMTYPES_H 27