25 lines
506 B
C++
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;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|