Cyclone ISO C++ API Reference Guide
BuiltinTopicTypes.hpp
Go to the documentation of this file.
1 /* Copyright 2010, Object Management Group, Inc.
2 * Copyright 2010, PrismTech, Corp.
3 * Copyright 2010, Real-Time Innovations, Inc.
4 * All rights reserved.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 #ifndef OMG_DDS_CORE_TBUILTIN_TOPIC_TYPES_HPP_
19 #define OMG_DDS_CORE_TBUILTIN_TOPIC_TYPES_HPP_
20 
21 
22 #if defined (OMG_DDS_X_TYPES_BUILTIN_TOPIC_TYPES_SUPPORT)
23 namespace dds
24 {
25 namespace core
26 {
27 
28 
29 class BytesTopicType;
30 
31 
32 class StringTopicType;
33 
34 
35 class KeyedBytesTopicType;
36 
37 
38 class KeyedStringTopicType;
39 }
40 }
41 
42 
43 class dds::core::BytesTopicType
44 {
45 public:
46  BytesTopicType();
47  BytesTopicType(const std::vector<uint32_t>& data);
48 public:
49  operator std::vector<uint32_t>& ();
50 public:
51  const std::vector<uint8_t>& data();
52  void data(const std::vector<uint8_t>& bytes);
53 };
54 
55 
56 class dds::core::StringTopicType
57 {
58 public:
59  StringTopicType();
60  StringTopicType(const std::string& data);
61 public:
62  operator std::string& ();
63 public:
64  const std::string& data();
65  void data(const std::string& bytes);
66 };
67 
68 
75 class dds::core::KeyedStringTopicType
76 {
77 public:
78  KeyedStringTopicType();
79  KeyedStringTopicType(const std::string& key, const std::string& value);
80 
81 public:
82  const std::string& key() const;
83  void key(const std::string& value);
84 
85  const std::string& value() const;
86  void value(const std::string& value);
87 };
88 
95 class dds::core::KeyedBytesTopicType
96 {
97 public:
98  KeyedBytesTopicType();
99  KeyedBytesTopicType(const std::string& key, const std::vector<uint8_t>& bytes);
100 
101 public:
102  const std::string& key() const;
103  void key(const std::string& value);
104 
105  const std::vector<uint8_t>& value() const;
106  void value(const std::vector<uint8_t>& value);
107 };
108 
109 
110 #endif /* OMG_DDS_X_TYPES_BUILTIN_TOPIC_TYPES_SUPPORT */
111 
112 #endif /* OMG_DDS_CORE_TBUILTIN_TOPIC_TYPES_HPP_ */
dds
Definition: array.hpp:30