| 49 | } |
| 50 | |
| 51 | DDS::ReturnCode_t MemberDescriptorImpl::copy_from(DDS::MemberDescriptor* other) |
| 52 | { |
| 53 | if (!other) { |
| 54 | return DDS::RETCODE_BAD_PARAMETER; |
| 55 | } |
| 56 | |
| 57 | name(other->name()); |
| 58 | id(other->id()); |
| 59 | type(other->type()); |
| 60 | default_value(other->default_value()); |
| 61 | index(other->index()); |
| 62 | label(other->label()); |
| 63 | try_construct_kind(other->try_construct_kind()); |
| 64 | is_key(other->is_key()); |
| 65 | is_optional(other->is_optional()); |
| 66 | is_must_understand(other->is_must_understand()); |
| 67 | is_shared(other->is_shared()); |
| 68 | is_default_label(other->is_default_label()); |
| 69 | |
| 70 | return DDS::RETCODE_OK; |
| 71 | } |
| 72 | |
| 73 | ::CORBA::Boolean MemberDescriptorImpl::is_consistent() |
| 74 | { |
nothing calls this directly
no test coverage detected