X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FForkedCalls.h;h=529f5c6861082a56b763108818d028939626d0b0;hb=55a3dd7b346d29a52ba305a4558e9e380ef50f47;hp=caeba526e0eaf9a9afe703635fbc12ae651f9259;hpb=c9b9748cee687e709e9e48dd2c78e054d8ea29a3;p=lyx.git diff --git a/src/support/ForkedCalls.h b/src/support/ForkedCalls.h index caeba526e0..529f5c6861 100644 --- a/src/support/ForkedCalls.h +++ b/src/support/ForkedCalls.h @@ -15,14 +15,13 @@ #define FORKEDCALLS_H #include "support/shared_ptr.h" +#include "support/strfwd.h" #include #ifdef HAVE_SYS_TYPES_H # include #endif -#include - namespace lyx { namespace support { @@ -150,6 +149,8 @@ private: class ForkedCall : public ForkedProcess { public: + /// + ForkedCall(std::string const & path = empty_string()); /// virtual shared_ptr clone() const { return shared_ptr(new ForkedCall(*this)); @@ -175,6 +176,8 @@ public: private: /// virtual int generateChild(); + /// + std::string cmd_prefix_; };