00001 #ifndef OMG_DDS_DYNAMIC_DATA_FACTORY_HPP_ 00002 #define OMG_DDS_DYNAMIC_DATA_FACTORY_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 <dds/core/detail/conformance.hpp> 00024 #include <dds/core/Reference.hpp> 00025 #include <tdds/xtypes/tdds_xtypes_fwd.hpp> 00026 00027 00028 #ifdef OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT 00029 00030 00031 template <typename DELEGATE> 00032 class tdds::type::dynamic::DynamicDataFactory : dds::core::Reference<DELEGATE> 00033 { 00034 OMG_DDS_REF_TYPE(DynamicDataFactory, dds::core::Reference, DELEGATE) 00035 00036 public: 00037 static DynamicDataFactory get_instance(); 00038 00039 public: 00040 void close(); 00041 // TODO: Why no type-param? 00042 dds::type::dynamic::DynamicData create_data(); 00043 }; 00044 00045 00046 #endif // OMG_DDS_EXTENSIBLE_AND_DYNAMIC_TOPIC_TYPE_SUPPORT 00047 00048 00049 #endif // !defined(OMG_DDS_DYNAMIC_DATA_FACTORY_HPP_)
1.7.1