| 238 | virtual ~OperatorWithParam() {} |
| 239 | |
| 240 | Operator* Clone(void) override |
| 241 | { |
| 242 | T* new_obj = new T(*dynamic_cast<T*>(this)); |
| 243 | new_obj->ParseDefParam(); |
| 244 | return new_obj; |
| 245 | } |
| 246 | |
| 247 | P* GetParam(void) |
| 248 | { |
nothing calls this directly
no test coverage detected