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

18 lines
262 B
C++

#ifndef BUILDER_OP_
#define BUILDER_OP_
#include <iostream>
#include <memory>
namespace builder {
class Op {
public:
class Impl;
std::shared_ptr<Impl> GetImpl() { return impl_; }
private:
std::shared_ptr<Impl> impl_;
};
} // namespace builder
#endif