// Copyright 2018 Proyectos y Sistemas de Mantenimiento SL (eProsima). // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef TYPES_DYNAMIC_TYPE_MEMBER_H #define TYPES_DYNAMIC_TYPE_MEMBER_H #include #include namespace eprosima { namespace fastrtps { namespace types { class AnnotationDescriptor; class DynamicType; class DynamicTypeMember { protected: DynamicType* parent_; MemberDescriptor descriptor_; MemberId id_; uint32_t get_index() const; void set_index(uint32_t index); void set_parent(DynamicType* pType); friend class DynamicTypeBuilder; friend class DynamicType; friend class DynamicData; public: DynamicTypeMember(); DynamicTypeMember(const DynamicTypeMember* other); DynamicTypeMember( const MemberDescriptor* descriptor, MemberId id); ~DynamicTypeMember(); ReturnCode_t apply_annotation(AnnotationDescriptor& descriptor); ReturnCode_t apply_annotation( const std::string& annotation_name, const std::string& key, const std::string& value); bool equals(const DynamicTypeMember*) const; ReturnCode_t get_annotation( AnnotationDescriptor& descriptor, uint32_t idx); uint32_t get_annotation_count(); bool key_annotation() const; std::vector get_union_labels() const; ReturnCode_t get_descriptor(MemberDescriptor* descriptor) const; MemberId get_id() const; std::string get_name() const; bool is_default_union_value() const; const MemberDescriptor* get_descriptor() const { return &descriptor_; } }; } // namespace types } // namespace fastrtps } // namespace eprosima #endif // TYPES_DYNAMIC_TYPE_MEMBER_H