--- PamCut/Collections/VerboseCollection/VerboseCollection.h 2009/05/29 10:08:45 1.1 +++ PamCut/Collections/VerboseCollection/VerboseCollection.h 2009/10/27 10:24:00 1.2 @@ -24,9 +24,11 @@ /*! @brief Constructor. * * @param collectionName The collection's name. + * @param owns If true, the collection will own the cuts and the actions, ie., it will + * destroy them in its destructor. */ - VerboseCollection(const char *collectionName) : - SmartCollection(collectionName) { + VerboseCollection(const char *collectionName, bool owns = true) : + SmartCollection(collectionName, owns) { } /*! @brief Destructor. */