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

21 lines
293 B
C
Raw Normal View History

2021-08-04 20:24:07 +08:00
#ifndef BUILDER_BUILDER_
#define BUILDER_BUILDER_
#include <memory>
namespace builder {
class Builder {
public:
class Impl;
Builder();
void DumpModule();
std::shared_ptr<Impl> GetImpl() { return _impl; }
private:
std::shared_ptr<Impl> _impl;
};
} // namespace builder
#endif