| 119 | } |
| 120 | |
| 121 | void daeMetaElement::addCMDataArray(daeInt offset, daeUInt numChoices) |
| 122 | { |
| 123 | daeMetaArrayAttribute* meaa = new daeMetaArrayAttribute(); |
| 124 | meaa->setType(dae.getAtomicTypes().get("int")); |
| 125 | meaa->setName("CMData"); |
| 126 | meaa->setOffset(offset); |
| 127 | meaa->setContainer( this); |
| 128 | |
| 129 | if (_metaCMData) |
| 130 | delete _metaCMData; |
| 131 | |
| 132 | _metaCMData = meaa; |
| 133 | |
| 134 | _numMetaChoices = numChoices; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | /*void |
no test coverage detected