]> git.lyx.org Git - lyx.git/blobdiff - src/support/systemcall.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / systemcall.C
index b7040fcba3037e0328a3aa17fec3f1e003fbee56..ac4baaf44c42ff74dfd460db46bf52ace41e169d 100644 (file)
@@ -1,29 +1,32 @@
 /**
- *  \file systemcall.C
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * \file systemcall.C
+ * 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.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "systemcall.h"
 #include "os.h"
 
 #include <cstdlib>
 
+using std::string;
+
 #ifndef CXX_GLOBAL_CSTD
 using std::system;
 #endif
 
+namespace lyx {
+namespace support {
+
 // Reuse of instance
 int Systemcall::startscript(Starttype how, string const & what)
 {
@@ -39,3 +42,6 @@ int Systemcall::startscript(Starttype how, string const & what)
 
        return ::system(command.c_str());
 }
+
+} // namespace support
+} // namespace lyx