114c92070SAlex Zinenko //===- PythonTestDialect.h - PythonTest dialect definition ------*- C++ -*-===//
214c92070SAlex Zinenko //
314c92070SAlex Zinenko // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
414c92070SAlex Zinenko // See https://llvm.org/LICENSE.txt for license information.
514c92070SAlex Zinenko // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
614c92070SAlex Zinenko //
714c92070SAlex Zinenko //===----------------------------------------------------------------------===//
814c92070SAlex Zinenko 
914c92070SAlex Zinenko #ifndef MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
1014c92070SAlex Zinenko #define MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
1114c92070SAlex Zinenko 
1214c92070SAlex Zinenko #include "mlir/IR/Dialect.h"
1314c92070SAlex Zinenko #include "mlir/IR/OpImplementation.h"
1414c92070SAlex Zinenko #include "mlir/Interfaces/InferTypeOpInterface.h"
1514c92070SAlex Zinenko 
1614c92070SAlex Zinenko #include "PythonTestDialect.h.inc"
1714c92070SAlex Zinenko 
1814c92070SAlex Zinenko #define GET_OP_CLASSES
1914c92070SAlex Zinenko #include "PythonTestOps.h.inc"
2014c92070SAlex Zinenko 
21*89a92fb3SAlex Zinenko #define GET_ATTRDEF_CLASSES
22*89a92fb3SAlex Zinenko #include "PythonTestAttributes.h.inc"
23*89a92fb3SAlex Zinenko 
24*89a92fb3SAlex Zinenko #define GET_TYPEDEF_CLASSES
25*89a92fb3SAlex Zinenko #include "PythonTestTypes.h.inc"
26*89a92fb3SAlex Zinenko 
2714c92070SAlex Zinenko #endif // MLIR_TEST_PYTHON_LIB_PYTHONTESTDIALECT_H
28