| 24 |
/*! @brief Constructor. |
/*! @brief Constructor. |
| 25 |
* |
* |
| 26 |
* @param collectionName The collection's name. |
* @param collectionName The collection's name. |
| 27 |
|
* @param owns If true, the collection will own the cuts and the actions, ie., it will |
| 28 |
|
* destroy them in its destructor. |
| 29 |
*/ |
*/ |
| 30 |
VerboseCollection(const char *collectionName) : |
VerboseCollection(const char *collectionName, bool owns = true) : |
| 31 |
SmartCollection(collectionName) { |
SmartCollection(collectionName, owns) { |
| 32 |
} |
} |
| 33 |
|
|
| 34 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |