Searched defs:cmd_setter_ (Results 1 – 2 of 2) sorted by relevance
53 struct cmd_setter_ : handler_base_ext struct55 typedef Char value_type;56 typedef std::basic_string<value_type> string_type;58 cmd_setter_(string_type && cmd_line) : _cmd_line(api::build_cmd(std::move(cmd_line))) {} in cmd_setter_() argument59 cmd_setter_(const string_type & cmd_line) : _cmd_line(api::build_cmd(cmd_line)) {} in cmd_setter_() function61 void on_setup(Executor& exec) in on_setup()67 string_type str() const in str()85 std::vector<string_type> _cmd_line;86 std::vector<Char*> _cmd_impl = make_cmd(_cmd_line);
22 struct cmd_setter_ : ::boost::process::detail::handler_base struct24 typedef CharType value_type;25 typedef std::basic_string<value_type> string_type;27 cmd_setter_(string_type && cmd_line) : _cmd_line(std::move(cmd_line)) {} in cmd_setter_() argument28 cmd_setter_(const string_type & cmd_line) : _cmd_line(cmd_line) {} in cmd_setter_() function30 void on_setup(Executor& exec) in on_setup()34 const string_type & str() const {return _cmd_line;} in str()37 string_type _cmd_line;