| 280 | } |
| 281 | |
| 282 | Extensibility DynamicTypeSupport::base_extensibility() const |
| 283 | { |
| 284 | Extensibility ext = OpenDDS::DCPS::FINAL; |
| 285 | const ReturnCode_t rc = extensibility(type_, ext); |
| 286 | if (rc != RETCODE_OK && log_level >= LogLevel::Error) { |
| 287 | ACE_ERROR((LM_ERROR, "(%P|%t) ERROR: DynamicTypeSupport::base_extensibility: " |
| 288 | "could not get correct extensibility for DynamicType %C: %C\n", |
| 289 | name(), retcode_to_string(rc))); |
| 290 | } |
| 291 | return ext; |
| 292 | } |
| 293 | |
| 294 | Extensibility DynamicTypeSupport::max_extensibility() const |
| 295 | { |
no test coverage detected