2021-08-11 10:46:07 +08:00
|
|
|
#ifndef BUILDER_OP_
|
|
|
|
#define BUILDER_OP_
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace builder {
|
|
|
|
class Op {
|
2021-08-13 15:05:10 +08:00
|
|
|
public:
|
2021-08-16 15:35:37 +08:00
|
|
|
Op();
|
2021-08-11 10:46:07 +08:00
|
|
|
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
|