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

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 */