| 30 | } |
| 31 | |
| 32 | std::shared_ptr<Object> ObjectGcode::shallowClone() const |
| 33 | { |
| 34 | auto res = std::make_shared<ObjectGcode>( ProtectedStruct{}, *this ); |
| 35 | if ( gcodeSource_ ) |
| 36 | res->setGcodeSource( gcodeSource_ ); |
| 37 | return res; |
| 38 | } |
| 39 | |
| 40 | void ObjectGcode::setCNCMachineSettings( const CNCMachineSettings& cncSettings ) |
| 41 | { |
nothing calls this directly
no test coverage detected