]> git.lyx.org Git - lyx.git/blobdiff - src/support/systemcall.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / systemcall.h
index a1676df8bb63e7c83bf229afba80b7e1499d8237..fda1b12bf12354b2f6ae57ae5e2926ba3d7c8bf7 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
 /**
  *  \file systemcall.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * 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
 
 #include "LString.h"
 
-#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,7 +37,7 @@ 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.
@@ -44,4 +45,7 @@ public:
        int startscript(Starttype how, string const & what);
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif // SYSTEMCALL_H