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