19 #ifndef SBUILD_RUN_PARTS_H
20 #define SBUILD_RUN_PARTS_H
22 #include <sbuild/custom-error.h>
23 #include <sbuild/environment.h>
24 #include <sbuild/types.h>
29 #include <sys/types.h>
130 template <
class charT,
class traits>
132 std::basic_ostream<charT,traits>&
133 operator << (std::basic_ostream<charT,traits>& stream,
138 for (
const auto& program : rhs.programs)
139 stream << program <<
'\n';
143 for (program_set::const_reverse_iterator pos = rhs.programs.rbegin();
144 pos != rhs.programs.rend();
146 stream << *pos <<
'\n';