| 16 | namespace DynamicPropertyValue |
| 17 | { |
| 18 | DynamicPropertyDoubleRcPtr AsDouble(DynamicPropertyRcPtr & prop) |
| 19 | { |
| 20 | auto res = OCIO_DYNAMIC_POINTER_CAST<DynamicPropertyDouble>(prop); |
| 21 | if (res) return res; |
| 22 | throw Exception("Dynamic property value is not a double."); |
| 23 | } |
| 24 | DynamicPropertyGradingPrimaryRcPtr AsGradingPrimary(DynamicPropertyRcPtr & prop) |
| 25 | { |
| 26 | auto res = OCIO_DYNAMIC_POINTER_CAST<DynamicPropertyGradingPrimary>(prop); |
no outgoing calls