00001 #ifndef OMG_DDS_XTYPES_DYNAMIC_TYPE_MEMBER_HPP_ 00002 #define OMG_DDS_XTYPES_DYNAMIC_TYPE_MEMBER_HPP_ 00003 00004 00005 /* Copyright 2010, Object Management Group, Inc. 00006 * Copyright 2010, PrismTech, Corp. 00007 * Copyright 2010, Real-Time Innovations, Inc. 00008 * All rights reserved. 00009 * 00010 * Licensed under the Apache License, Version 2.0 (the "License"); 00011 * you may not use this file except in compliance with the License. 00012 * You may obtain a copy of the License at 00013 * 00014 * http://www.apache.org/licenses/LICENSE-2.0 00015 * 00016 * Unless required by applicable law or agreed to in writing, software 00017 * distributed under the License is distributed on an "AS IS" BASIS, 00018 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00019 * See the License for the specific language governing permissions and 00020 * limitations under the License. 00021 */ 00022 00023 #include <string> 00024 00025 #include <dds/core/detail/conformance.hpp> 00026 #include <dds/core/Reference.hpp> 00027 #include <tdds/xtypes/tdds_xtypes_fwd.hpp> 00028 00029 00030 #ifdef OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT 00031 00032 00033 template <typename DELEGATE> 00034 class tdds::type::dynamic::DynamicTypeMember : dds::core::Reference<DELEGATE> 00035 { 00036 OMG_DDS_REF_TYPE(DynamicTypeMember, dds::core::Reference, DELEGATE) 00037 00038 public: 00039 dds::type::dynamic::MemberDescriptor descriptor() const; 00040 void descriptor(const dds::type::dynamic::MemberDescriptor& value); 00041 00042 const dds::type::dynamic::AnnotationDescriptorSeq annotation() const; 00043 dds::type::dynamic::AnnotationDescriptorSeq& 00044 annotation(dds::type::dynamic::AnnotationDescriptorSeq& dst) const; 00045 00046 void apply_annotation( 00047 const dds::type::dynamic::AnnotationDescriptor& descriptor); 00048 00052 DynamicTypeMember& operator+=( 00053 const dds::type::dynamic::AnnotationDescriptor& descriptor); 00054 00055 dds::type::MemberId id() const; 00056 00057 const std::string name() const; 00058 00063 bool equals(DynamicTypeMember other); 00064 00065 public: 00066 void close(); 00067 }; 00068 00069 00070 #endif // defined(OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT) 00071 00072 00073 #endif // !defined(OMG_DDS_XTYPES_DYNAMIC_TYPE_MEMBER_HPP_)
1.7.1