19 #ifndef SBUILD_RUN_PARTS_H
20 #define SBUILD_RUN_PARTS_H
22 #include <sbuild/sbuild-custom-error.h>
23 #include <sbuild/sbuild-environment.h>
24 #include <sbuild/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 (program_set::const_iterator pos = rhs.programs.begin();
139 pos != rhs.programs.end();
141 stream << *pos <<
'\n';
145 for (program_set::const_reverse_iterator pos = rhs.programs.rbegin();
146 pos != rhs.programs.rend();
148 stream << *pos <<
'\n';