Cyclone ISO C++ API Reference Guide
StatusCondition.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_T_STATUS_CONDITION_HPP_
2 #define OMG_DDS_CORE_T_STATUS_CONDITION_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Corp.
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 
24 #include <dds/core/cond/detail/StatusCondition.hpp>
25 #include <dds/core/Entity.hpp>
26 
27 namespace dds
28 {
29 namespace core
30 {
31 namespace cond
32 {
33 
34 class StatusCondition;
35 }
36 }
37 }
38 
83 {
84 public:
87 
88 
98 
114  template <typename FUN>
115  StatusCondition(const dds::core::Entity& e, FUN& functor);
116 
118  template <typename FUN>
119  StatusCondition(const dds::core::Entity& e, const FUN& functor);
120 
122  ~StatusCondition();
125 public:
171  void
172  enabled_statuses(const ::dds::core::status::StatusMask& status) const;
173 
214  const ::dds::core::status::StatusMask enabled_statuses() const;
215 
224  const dds::core::Entity& entity() const;
225 };
226 
227 #endif /* OMG_DDS_CORE_T_STATUS_CONDITION_HPP_ */
State.hpp
OMG_DDS_REF_TYPE_DELEGATE_C
#define OMG_DDS_REF_TYPE_DELEGATE_C(TYPE, BASE, DELEGATE)
Definition: refmacros.hpp:183
dds::core::cond::StatusCondition::enabled_statuses
const ::dds::core::status::StatusMask enabled_statuses() const
dds::core::cond::StatusCondition::StatusCondition
StatusCondition(const dds::core::Entity &e)
dds::core::cond::StatusCondition::entity
const dds::core::Entity & entity() const
OMG_DDS_EXPLICIT_REF_BASE
#define OMG_DDS_EXPLICIT_REF_BASE(TYPE, FROM)
Definition: refmacros.hpp:118
dds
Definition: array.hpp:30
Condition.hpp
dds::core::Entity
This class is the abstract base class for all the DCPS objects.
Definition: Entity.hpp:55
dds::core::cond::Condition
This class is the base class for all the conditions that may be attached to a dds::core::cond::WaitSe...
Definition: Condition.hpp:58
Entity.hpp
dds::core::cond::StatusCondition
A StatusCondition object is a specific Condition that is associated with each Entity.
Definition: StatusCondition.hpp:82