]> git.lyx.org Git - lyx.git/blobdiff - src/support/systemcall.h
* src/LaTeX.C (deplog): fix the regex to parse filenames in the log file
[lyx.git] / src / support / systemcall.h
index a1676df8bb63e7c83bf229afba80b7e1499d8237..8702283f1a3b3101bdc3ca702d5d0500cc17a3af 100644 (file)
@@ -1,25 +1,26 @@
 // -*- C++ -*-
 /**
- *  \file systemcall.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * \file systemcall.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef SYSTEMCALL_H
 #define SYSTEMCALL_H
 
-#include "LString.h"
+#include <string>
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+namespace lyx {
+namespace support {
 
-/** 
+/**
  * An instance of Class Systemcall represents a single child process.
  *
  * Class Systemcall uses system() to launch the child process.
@@ -36,12 +37,15 @@ public:
                Wait, //< wait for completion before returning from startscript()
                DontWait //< don't wait for completion
        };
+
        /** Start child process.
         *  The string "what" contains a commandline with arguments separated
         *  by spaces.
         */
-       int startscript(Starttype how, string const & what);
+       int startscript(Starttype how, std::string const & what);
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif // SYSTEMCALL_H