]> git.lyx.org Git - features.git/blobdiff - src/frontends/controllers/ControlForks.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / controllers / ControlForks.h
index 55ff3631378960109a2ce8bcb3e8af2cfd8fb431..0752a062042cb039dc9ca02c2d1ebddffbabf226 100644 (file)
@@ -1,22 +1,20 @@
 // -*- C++ -*-
 /**
  * \file ControlForks.h
- * Read COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CONTROLFORKS_H
 #define CONTROLFORKS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "ControlDialog_impl.h"
-#include "LString.h"
+#include "support/std_string.h"
 
 #include <boost/signals/connection.hpp>
 
@@ -36,7 +34,6 @@ public:
        string const getCommand(pid_t) const;
        ///
        void kill(pid_t);
-
 private:
        ///
        virtual void apply();
@@ -47,7 +44,7 @@ private:
        /// Connection to the ForkedcallsController signal
        boost::signals::connection childrenChanged_;
        /// The list of PIDs to kill
-       std::vector<string> pids_;
+       std::vector<pid_t> pids_;
 };
 
 #endif // CONTROLFORKS_H