Cyclone ISO C++ API Reference Guide
Value.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_VALUE_HPP_
2 #define OMG_DDS_CORE_VALUE_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 
22 
23 namespace dds
24 {
25 namespace core
26 {
27 template <typename D>
28 class Value;
29 }
30 }
31 
48 template <typename D>
49 class dds::core::Value
50 {
51 protected:
52  Value();
53  Value(const Value& p);
54 
55 public:
66  template <typename ARG>
67  Value(const ARG& arg);
68 
75  template <typename ARG1, typename ARG2>
76  Value(const ARG1& arg1, const ARG2& arg2);
77 
85  template <typename ARG1, typename ARG2, typename ARG3>
86  Value(const ARG1& arg1, const ARG2& arg2, const ARG3& arg3);
87 
96  template <typename ARG1, typename ARG2, typename ARG3, typename ARG4>
97  Value(const ARG1& arg1, const ARG2& arg2, const ARG3& arg3, const ARG4& arg4);
98 
108  template <typename ARG1, typename ARG2, typename ARG3, typename ARG4, typename ARG5>
109  Value(const ARG1& arg1, const ARG2& arg2, const ARG3& arg3, const ARG4& arg4, const ARG5& arg5);
110 
121  template <typename ARG1, typename ARG2, typename ARG3, typename ARG4, typename ARG5, typename ARG6>
122  Value(const ARG1& arg1, const ARG2& arg2, const ARG3& arg3, const ARG4& arg4, const ARG5& arg5, const ARG6& arg6);
125 public:
127  ~Value();
130 public:
135  Value& operator=(const Value& other);
136 
143  bool operator==(const Value& other) const;
144 
151  bool operator !=(const Value& other) const;
152 
153 public:
171  D* operator->();
172 
174  const D* operator->() const;
175 
182  const D& delegate() const;
183  D& delegate();
184  operator D& ();
185  operator const D& () const;
188 protected:
189  D d_;
190 };
191 
192 
193 #endif /* OMG_DDS_CORE_VALUE_HPP_ */
dds::core::Value::operator!=
bool operator!=(const Value &other) const
dds::core::Value::operator=
Value & operator=(const Value &other)
dds::core::Value::operator==
bool operator==(const Value &other) const
dds
Definition: array.hpp:30
dds::core::Value
This class is the base for various value-type dds objects.
Definition: Value.hpp:28
dds::core::Value::operator->
D * operator->()