1 //===- SubElementInterfaces.h - Attr and Type SubElements -------*- 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 // This file contains interfaces and utilities for querying the sub elements of
10 // an attribute or type.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef MLIR_IR_SUBELEMENTINTERFACES_H
15 #define MLIR_IR_SUBELEMENTINTERFACES_H
16 
17 #include "mlir/IR/Attributes.h"
18 #include "mlir/IR/Types.h"
19 
20 /// Include the definitions of the sub elemnt interfaces.
21 #include "mlir/IR/SubElementAttrInterfaces.h.inc"
22 #include "mlir/IR/SubElementTypeInterfaces.h.inc"
23 
24 #endif // MLIR_IR_SUBELEMENTINTERFACES_H
25