30 lines
612 B
C++
30 lines
612 B
C++
/*
|
|
* File: MemberDescriptionList.h
|
|
* Author: jgaebler
|
|
*
|
|
* Created on June 28, 2012, 10:30 AM
|
|
*/
|
|
|
|
#ifndef MEMBERDESCRIPTIONLIST_H
|
|
#define MEMBERDESCRIPTIONLIST_H
|
|
|
|
#include "MemberDescription.h"
|
|
#include "common/container/List.h"
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
/**
|
|
* @brief Provides a list to store member description objects
|
|
* @author Jan Gäbler
|
|
* @ingroup Moversight
|
|
* @class MemberDescriptionList
|
|
*/
|
|
class MemberDescriptionList : public List<MemberDescription> {
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* MEMBERDESCRIPTIONLIST_H */
|
|
|