]> git.lyx.org Git - lyx.git/blobdiff - src/support/Systemcall.h
abdel likes short code
[lyx.git] / src / support / Systemcall.h
index 8ed0277c0d922e407f249c9c52c6ffe73c1d88bf..61ba092a2dde0a3c93296de11a6650569faea15c 100644 (file)
@@ -5,7 +5,6 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
- * \author Peter Kümmel
  *
  * Interface cleaned up by
  * \author Angus Leeming
 namespace lyx {
 namespace support {
 
-class ProgressInterface;
-
 /**
  * An instance of Class Systemcall represents a single child process.
  *
- * Class Systemcall uses SystemcallPrivate to launch the child process.
+ * Class Systemcall uses system() to launch the child process.
  * The user can choose to wait or not wait for the process to complete, but no
  * callback is invoked upon completion of the child.
  *
@@ -46,9 +43,6 @@ public:
         *  by spaces.
         */
        int startscript(Starttype how, std::string const & what);
-
-       static void registerProgressInterface(ProgressInterface*);
-       static ProgressInterface* progress();
 };
 
 } // namespace support