Program Listing for File QosProvider.hpp

Return to documentation for file (/tmp/ws/src/fastrtps/include/dds/core/QosProvider.hpp)

/*
 * Copyright 2010, Object Management Group, Inc.
 * Copyright 2010, PrismTech, Corp.
 * Copyright 2010, Real-Time Innovations, Inc.
 * Copyright 2019, Proyectos y Sistemas de Mantenimiento SL (eProsima).
 * All rights reserved.
 *
 * 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 OMG_DDS_CORE_QOS_PROVIDER_HPP_
#define OMG_DDS_CORE_QOS_PROVIDER_HPP_

#include <dds/core/Reference.hpp>

//#include <dds/domain/qos/DomainParticipantQos.hpp>

//#include <dds/topic/qos/TopicQos.hpp>

//#include <dds/sub/qos/SubscriberQos.hpp>
//#include <dds/sub/qos/DataReaderQos.hpp>

//#include <dds/pub/qos/PublisherQos.hpp>
//#include <dds/pub/qos/DataWriterQos.hpp>

#include <dds/core/detail/QosProvider.hpp>


namespace dds {
namespace core {

template<typename DELEGATE>
class TQosProvider : public Reference<DELEGATE>
{
public:

    explicit TQosProvider(
            const std::string& uri,
            const std::string& profile);

    explicit TQosProvider(
            const std::string& uri);

    dds::domain::qos::DomainParticipantQos participant_qos();

    dds::domain::qos::DomainParticipantQos participant_qos(
            const std::string& id);

    dds::topic::qos::TopicQos topic_qos();

    dds::topic::qos::TopicQos topic_qos(
            const std::string& id);

    dds::sub::qos::SubscriberQos subscriber_qos();

    dds::sub::qos::SubscriberQos subscriber_qos(
            const std::string& id);

    dds::sub::qos::DataReaderQos datareader_qos();

    dds::sub::qos::DataReaderQos datareader_qos(
            const std::string& id);

    dds::pub::qos::PublisherQos publisher_qos();

    dds::pub::qos::PublisherQos publisher_qos(
            const std::string& id);

    dds::pub::qos::DataWriterQos datawriter_qos();

    dds::pub::qos::DataWriterQos datawriter_qos(
            const std::string& id);
};

typedef dds::core::detail::QosProvider QosProvider;

} //namespace core
} //namespace dds

#endif //OMG_DDS_CORE_QOS_PROVIDER_HPP_