{ return _source; }
/** Get the script to perform the change */
-std::string HelixScriptImpl::do_script() const
+Pathname HelixScriptImpl::do_script() const
{ return "do_script"; }
/** Get the script to undo the change */
-std::string HelixScriptImpl::undo_script() const
+Pathname HelixScriptImpl::undo_script() const
{ return "undo_script"; }
/** Check whether script to undo the change is available */
HelixScriptImpl( Source_Ref source_r, const zypp::HelixParser & data );
/** Get the script to perform the change */
- virtual std::string do_script() const;
+ virtual Pathname do_script() const;
/** Get the script to undo the change */
- virtual std::string undo_script() const;
+ virtual Pathname undo_script() const;
/** Check whether script to undo the change is available */
virtual bool undo_available() const;
/** */