| 1011 | } |
| 1012 | |
| 1013 | DDS::UInt32 bound_total(DDS::TypeDescriptor_var descriptor) |
| 1014 | { |
| 1015 | DDS::UInt32 total = 1; |
| 1016 | const DDS::BoundSeq& bounds = descriptor->bound(); |
| 1017 | for (DDS::UInt32 i = 0; i < bounds.length(); ++i) { |
| 1018 | total *= bounds[i]; |
| 1019 | } |
| 1020 | return total; |
| 1021 | } |
| 1022 | |
| 1023 | DDS::ReturnCode_t bitmask_bound(DDS::DynamicType_ptr type, DDS::TypeKind& bound_kind) |
| 1024 | { |
no test coverage detected