]> git.lyx.org Git - lyx.git/blobdiff - src/support/forkedcallqueue.h
hopefully fix tex2lyx linking.
[lyx.git] / src / support / forkedcallqueue.h
index d06d411b5574cdb1224dd7d7cb2d085ffad0a860..be9953a8819ff44ae230c9086237b5c09bb917fb 100644 (file)
 #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,14 +30,14 @@ namespace support {
 class ForkedCallQueue {
 public:
        /// A process in the queue
-       typedef std::pair<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);
-       /// Query whether the queue is running a forked process now.
+       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(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
        static ForkedCallQueue & get();