]> git.lyx.org Git - features.git/blobdiff - src/support/forkedcall.h
Replace LString.h with support/std_string.h,
[features.git] / src / support / forkedcall.h
index b1bfa2865be4a625718117c9aab7d5f73d6d10c9..8e58485d18e4c8f66c0aed5af98aaee31cce7e52 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- *  \file forkedcall.h
+ * \file forkedcall.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
@@ -9,7 +9,7 @@
  * Interface cleaned up by
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  *
  * An instance of Class Forkedcall represents a single child process.
  *
@@ -26,7 +26,7 @@
 #ifndef FORKEDCALL_H
 #define FORKEDCALL_H
 
-#include "LString.h"
+#include "support/std_string.h"
 
 #include <boost/shared_ptr.hpp>
 #include <boost/signals/signal2.hpp>
@@ -34,6 +34,9 @@
 
 #include <sys/types.h>
 
+namespace lyx {
+namespace support {
+
 class ForkedProcess {
 public:
        ///
@@ -164,4 +167,7 @@ private:
        virtual int generateChild();
 };
 
+} // namespace support
+} // namespace lyx
+
 #endif // FORKEDCALL_H