/* * File: ObjectList.h * Author: noackrob * * Created on July 31, 2013, 2:12 PM */ #pragma once #ifndef OBJECTLIST_H #define OBJECTLIST_H #include 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 { }; std::ostream& operator<<( std::ostream & out, const ObjectList l); } } #endif /* OBJECTLIST_H */