| 192 | // Module declaration |
| 193 | |
| 194 | BOOST_PYTHON_MODULE(_IECore) |
| 195 | { |
| 196 | bindRefCounted(); |
| 197 | bindRunTimeTyped(); |
| 198 | bindException(); |
| 199 | bindKDTree(); |
| 200 | bindObject(); |
| 201 | bindCompoundObject(); |
| 202 | bindTypeId(); |
| 203 | bindData(); |
| 204 | bindGeometricTypedData(); |
| 205 | bindAllSimpleTypedData(); |
| 206 | bindAllVectorTypedData(); |
| 207 | bindCompoundData(); |
| 208 | bindIndexedIO(); |
| 209 | bindMessageHandler(); |
| 210 | bindParameterised(); |
| 211 | bindOp(); |
| 212 | bindReader(); |
| 213 | bindBlindDataHolder(); |
| 214 | bindWriter(); |
| 215 | bindObjectReader(); |
| 216 | bindObjectWriter(); |
| 217 | bindParameter(); |
| 218 | bindNumericParameter(); |
| 219 | bindSimpleTypedParameter(); |
| 220 | bindVecTypedParameter(); |
| 221 | bindColorTypedParameter(); |
| 222 | bindBoxTypedParameter(); |
| 223 | bindMatrixTypedParameter(); |
| 224 | bindLineTypedParameter(); |
| 225 | bindVectorTypedParameter(); |
| 226 | bindSplineParameter(); |
| 227 | bindDateTimeParameter(); |
| 228 | bindCompoundParameter(); |
| 229 | bindValidatedStringParameter(); |
| 230 | bindPathParameter(); |
| 231 | bindFileNameParameter(); |
| 232 | bindDirNameParameter(); |
| 233 | bindHalf(); |
| 234 | bindTimer(); |
| 235 | bindSearchPath(); |
| 236 | bindCachedReader(); |
| 237 | bindObjectParameter(); |
| 238 | bindModifyOp(); |
| 239 | bindNullObject(); |
| 240 | bindObjectInterpolator(); |
| 241 | bindOversamplesCalculator(); |
| 242 | bindTransformationMatrix(); |
| 243 | bindTransformationMatrixData(); |
| 244 | bindBoundedKDTree(); |
| 245 | bindVectorDataFilterOp(); |
| 246 | bindTypedObjectParameter(); |
| 247 | bindHeaderGenerator(); |
| 248 | bindDataCastOp(); |
| 249 | bindDataPromoteOp(); |
| 250 | bindMatrixMultiplyOp(); |
| 251 | bindRandomRotationOp(); |
nothing calls this directly
no test coverage detected