#include "PythonTestDialect.h"
#include "mlir/IR/DialectImplementation.h"
#include "mlir/IR/OpImplementation.h"
#include "llvm/ADT/TypeSwitch.h"
#include "PythonTestDialect.cpp.inc"
#define GET_ATTRDEF_CLASSES
#include "PythonTestAttributes.cpp.inc"
#define GET_TYPEDEF_CLASSES
#include "PythonTestTypes.cpp.inc"
#define GET_OP_CLASSES
#include "PythonTestOps.cpp.inc"
namespace python_test {
void PythonTestDialect::initialize() {
addOperations<
#define GET_OP_LIST
#include "PythonTestOps.cpp.inc"
>();
addAttributes<
#define GET_ATTRDEF_LIST
#include "PythonTestAttributes.cpp.inc"
>();
addTypes<
#define GET_TYPEDEF_LIST
#include "PythonTestTypes.cpp.inc"
>();
}
}