Пример #1
0
void add_to_command(
    std::string& command, const std::vector<astd::filesystem::path>& values)
{
   for(auto& value : values)
   {
      add_to_command(command, add_quote(value.string()));
   }
}
Пример #2
0
 tokenizer(std::istream& is, bool skipws) :
     atf::parser::tokenizer< std::istream >
         (is, skipws, eof_type, nl_type, word_type)
 {
     add_quote('"', dblquote_type);
 }
Пример #3
0
void add_to_command(std::string& command, const command_seeker& command_name,
    const astd::filesystem::path& to_be_added)
{
   add_to_command(command, command_name);
   command += add_quote(to_be_added.string());
}
Пример #4
0
void add_to_command(std::string& command, const astd::filesystem::path& value)
{
   add_to_command(command, add_quote(value.string()));
}