Apama  10.7.2.2
sag_connectivity_cpp.hpp
Go to the documentation of this file.
1 /*
2  * Title: sag_connectivity_cpp.hpp
3  * Description: C++ header-only wrapper for C-ABI data_t type
4  * $Copyright (c) 2015-2018, 2020 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors.$
5  * Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG
6  * @Version: $Id: sag_connectivity_cpp.hpp 377142 2020-07-16 10:18:39Z matj $
7  */
8 
15 /*
16  NB: This uses a C ABI under the hood, but should be manipulated via the classes in this file.
17 */
18 
19 #ifndef _CPPMESSAGEDATA_H_
20 #define _CPPMESSAGEDATA_H_
21 
22 #include <sag_connectivity_c.h>
23 #include <algorithm>
24 #include <stdexcept>
25 #include <cstddef>
26 #include <cinttypes>
27 #include <stddef.h>
28 #include <assert.h>
29 #include <string>
30 #include <sstream>
31 #include <typeinfo>
32 #include <string.h>
33 #include <vector>
34 #include <unordered_set>
35 #include <inttypes.h>
36 
37 // internal implementation
38 #include <sag_internal/cpp_stdlib.hpp>
39 
40 // make sure bits/*.hpp can only be included from here
41 #define _DATAT_BITS_INCLUDE_TAG
42 
43 #include <sag_internal/connectivity_namespace_version.h>
44 
45 namespace com {
46 namespace softwareag {
50 namespace _DATAT_INTERNAL_CPP_NAMESPACE {
51 
52 class list_t;
53 class map_t;
54 class buffer_t;
55 template<typename T> class custom_t;
56 
61 
62 
63 // include all the sub-files for the individual types
64 
65 #include <bits/data_t.hpp>
66 
67 #include <bits/custom_t.hpp>
68 
69 #include <bits/functions.hpp>
70 
71 #include <bits/buffer_t.hpp>
72 
73 #include <bits/list_t.hpp>
74 
75 #include <bits/map_t.hpp>
76 
77 #include <bits/metadata_t.hpp>
78 
79 #include <bits/message.hpp>
80 
81 #include <bits/visitors.hpp>
82 
83 #include <bits/map_extractor.hpp>
84 
85 }
89 namespace connectivity { using namespace _DATAT_INTERNAL_CPP_NAMESPACE; }
90 
91 }} // com.softwareag.connectivity
92 
93 // internal implementation details in here
94 #include <sag_internal/data.hpp>
95 
96 // make sure bits/*.hpp can only be included from here
97 #undef _DATAT_BITS_INCLUDE_TAG
98 
99 #endif // _CPPMESSAGEDATA_H_
sag_underlying_decimal_t decimal_t
Decimals are implemented with an underlying 64bit int conforming to IEEE 754 decimal 64.
Definition: sag_connectivity_cpp.hpp:55
A list class which implements many of the functions on std::vector.
Definition: sag_connectivity_cpp.hpp:34
A map class which implements many of the functions on std::map.
Definition: sag_connectivity_cpp.hpp:36
A class that holds an untyped byte buffer.
Definition: sag_connectivity_cpp.hpp:27
Decimals are implemented with an underlying 64bit int conforming to IEEE 754 decimal 64.
Definition: sag_connectivity_c.h:106
A wrapper type for holding arbitrary objects inside a data_t.
Definition: sag_connectivity_cpp.hpp:55
Instead of including this file directly, include sag_connectivity_cpp.hpp if you need any types defin...