X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Fforkedcallqueue.h;h=5d33034dc63b26e78bb54fd0aea38bfcaa5e1503;hb=005545f28100fd30afa22313d6e3b1b67aa9a857;hp=d06d411b5574cdb1224dd7d7cb2d085ffad0a860;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/support/forkedcallqueue.h b/src/support/forkedcallqueue.h index d06d411b55..5d33034dc6 100644 --- a/src/support/forkedcallqueue.h +++ b/src/support/forkedcallqueue.h @@ -22,7 +22,7 @@ #include #include -#include "LString.h" + namespace lyx { namespace support { @@ -30,13 +30,13 @@ namespace support { class ForkedCallQueue { public: /// A process in the queue - typedef std::pair Process; + typedef std::pair 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