1//===- IntegerSet.h - C API Utils for Integer Sets --------------*- 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 declarations of implementation details of the C API for
10// MLIR IntegerSets. This file should not be included from C++ code other than C
11// API implementation nor from C code.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef MLIR_CAPI_INTEGERSET_H
16#define MLIR_CAPI_INTEGERSET_H
17
18#include "mlir-c/IntegerSet.h"
19#include "mlir/CAPI/Wrap.h"
20#include "mlir/IR/IntegerSet.h"
21
22DEFINE_C_API_METHODS(MlirIntegerSet, mlir::IntegerSet)
23
24#endif // MLIR_CAPI_INTEGERSET_H
25

source code of mlir/include/mlir/CAPI/IntegerSet.h