]> git.lyx.org Git - lyx.git/blobdiff - src/support/forkedcallqueue.h
the convert patch
[lyx.git] / src / support / forkedcallqueue.h
index 87a609f043d7761337955446aa08ace994e6bbd2..20b939791bd81432f643dcd00794306161774012 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Alfredo Braunstein (based on an idea from Angus Leeming)
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  *
  * This class implements a queue of forked processes. In order not to
  * hose the system with multiple processes running simultaneously, you can
 #ifndef FORKEDCALLQUEUE_H
 #define FORKEDCALLQUEUE_H
 
-#include "forkedcall.h"
+#include "support/forkedcall.h"
 
 #include <queue>
 #include <utility>
-#include "LString.h"
+
 
 namespace lyx {
 namespace support {
@@ -30,13 +30,13 @@ namespace support {
 class ForkedCallQueue {
 public:
        /// A process in the queue
-       typedef std::pair<string, Forkedcall::SignalTypePtr> Process;
+       typedef std::pair<std::string, Forkedcall::SignalTypePtr> Process;
         /** Add a process to the queue. Processes are forked sequentially
         *  only one is running at a time.
          *  Connect to the returned signal and you'll be informed when
          *  the process has ended.
          */
-       Forkedcall::SignalTypePtr add(string const & process);
+       Forkedcall::SignalTypePtr add(std::string const & process);
        /// Query whether the queue is running a forked process now.
        bool running() const;
        /// Get the and only instance of the class