mlir-hlo/tools/mlir-tblgen-builder/Builder/Op.h

17 lines
253 B
C
Raw Normal View History

2021-08-11 10:46:07 +08:00
#ifndef BUILDER_OP_
#define BUILDER_OP_
#include <iostream>
#include <memory>
namespace builder {
class Op {
class Impl;
std::shared_ptr<Impl> GetImpl() { return impl_; }
private:
std::shared_ptr<Impl> impl_;
2021-08-11 15:41:34 +08:00
};
2021-08-11 10:46:07 +08:00
} // namespace builder
#endif