Cyclone ISO C++ API Reference Guide
MultiTopic.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_T_TOPIC_MULTI_TOPIC_HPP_
2 #define OMG_DDS_T_TOPIC_MULTI_TOPIC_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Inc.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <vector>
23 
24 #include <dds/core/detail/conformance.hpp>
25 #include <dds/core/types.hpp>
27 
28 namespace dds
29 {
30 namespace topic
31 {
32 
33 #ifdef OMG_DDS_MULTI_TOPIC_SUPPORT
34 
40 template <typename T>
41 class MultiTopic : public TopicDescription
42 {
43 public:
45  OMG_DDS_IMPLICIT_REF_BASE(MultiTopic)
46 
47 public:
48  template <typename FWDIterator>
49  MultiTopic(const dds::domain::DomainParticipant& dp,
50  const std::string& name,
51  const std::string expression,
52  const FWDIterator& params_begin,
53  const FWDIterator& params_end);
54 
55  virtual ~MultiTopic();
56 
57 public:
58  const std::string expression() const;
59 
60  template <typename FWDIterator>
61  void expression_parameters(const FWDIterator& params_begin,
62  const FWDIterator& params_end);
63 
64  dds::core::StringSeq void expression_parameters() const;
65 
66 };
67 
68 #endif // OMG_DDS_MULTI_TOPIC_SUPPORT
69 
70 }
71 }
72 
73 
74 #endif /* OMG_DDS_T_TOPIC_CONTENT_FILTERED_TOPIC_HPP_ */
types.hpp
OMG_DDS_IMPLICIT_REF_BASE
#define OMG_DDS_IMPLICIT_REF_BASE(TYPE)
Definition: refmacros.hpp:75
dds
Definition: array.hpp:30
OMG_DDS_REF_TYPE_PROTECTED_DC_T
#define OMG_DDS_REF_TYPE_PROTECTED_DC_T(TYPE, BASE, T_PARAM, DELEGATE)
Definition: refmacros.hpp:171
dds::core::StringSeq
std::vector< std::string > StringSeq
Definition: types.hpp:43
TopicDescription.hpp
dds::domain::DomainParticipant
A DomainParticipant represents the local membership of the application in a Domain.
Definition: DomainParticipant.hpp:65
dds::topic::TopicDescription
This class is the base for Topic, ContentFilteredTopic and MultiTopic.
Definition: TopicDescription.hpp:48