30 |
/*! @brief Constructor. |
/*! @brief Constructor. |
31 |
* |
* |
32 |
* @param collectionName The collection's name. |
* @param collectionName The collection's name. |
33 |
|
* @param owns If true, the collection will own the cuts and the actions, ie., it will |
34 |
|
* destroy them in its destructor. |
35 |
*/ |
*/ |
36 |
SmartBlindCollection(const char* collectionName) : |
SmartBlindCollection(const char* collectionName, bool owns = true) : |
37 |
SmartCollection(collectionName){ |
SmartCollection(collectionName, owns) { |
38 |
} |
} |
39 |
|
|
40 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |