Files
2014-06-30 13:58:10 +02:00

25 lines
506 B
C++

#include <iostream>
#include "common/container/GroupList.h"
namespace ubeeme {
namespace moversight {
std::ostream&
operator<<( std::ostream & out, const GroupList l) {
out << "[";
if( !l.empty()) {
out << *(l.begin());
for( auto i = (++l.begin()); i != l.end(); i++) {
out << ", " << *i;
}
}
out << "]";
return out;
}
}
}