37 lines
680 B
C++
37 lines
680 B
C++
/*
|
|
* File: ObjectList.h
|
|
* Author: noackrob
|
|
*
|
|
* Created on July 31, 2013, 2:12 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef OBJECTLIST_H
|
|
#define OBJECTLIST_H
|
|
|
|
#include <list>
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class DeliverableObject;
|
|
|
|
/**
|
|
* @brief A List of deliverable objects.
|
|
* @class ObjectList
|
|
* @author Robert Noack
|
|
* @ingroup Moversight
|
|
*
|
|
* Actually a list of pointers to objects. For type safety.
|
|
*/
|
|
class ObjectList : public std::list<DeliverableObject*> {
|
|
};
|
|
|
|
std::ostream& operator<<( std::ostream & out, const ObjectList l);
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* OBJECTLIST_H */
|
|
|