9 lines
129 B
C++
9 lines
129 B
C++
|
#include "Op.h"
|
||
|
|
||
|
#include "OpImpl.h"
|
||
|
|
||
|
namespace builder {
|
||
|
|
||
|
Op::Op() : impl_(std::make_shared<Impl>()) {}
|
||
|
|
||
|
} // namespace builder
|