24 lines
343 B
C++
24 lines
343 B
C++
|
|
#pragma once
|
|
|
|
#ifndef GROUPLIST_H
|
|
#define GROUPLIST_H
|
|
|
|
#include <string>
|
|
#include <list>
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class GroupList : public std::list<std::string> {
|
|
|
|
};
|
|
|
|
std::ostream& operator<<( std::ostream & out, const GroupList l);
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* GROUPLIST_H */
|
|
|