//===- Dialect.h - PDLL ODS Dialect -----------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef MLIR_TOOLS_PDLL_ODS_DIALECT_H_ #define MLIR_TOOLS_PDLL_ODS_DIALECT_H_ #include <string> #include "mlir/Support/LLVM.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringMap.h" namespace mlir { namespace pdll { namespace ods { class Operation; /// This class represents an ODS dialect, and contains information on the /// constructs held within the dialect. class Dialect { … }; } // namespace ods } // namespace pdll } // namespace mlir #endif // MLIR_TOOLS_PDLL_ODS_DIALECT_H_