EMA C++ Edition
OmmRmtes.h
Go to the documentation of this file.
1/*|-----------------------------------------------------------------------------
2 *| This source code is provided under the Apache 2.0 license
3 *| and is provided AS IS with no warranty or guarantee of fit for purpose.
4 *| See the project's LICENSE.md for details.
5 *| Copyright (C) 2019, 2024 LSEG. All rights reserved. --
6 *|-----------------------------------------------------------------------------
7 */
8
9#ifndef __refinitiv_ema_access_OmmRmtes_h
10#define __refinitiv_ema_access_OmmRmtes_h
11
40#include "Access/Include/Data.h"
41
42namespace refinitiv {
43
44namespace ema {
45
46namespace access {
47
48class RmtesBuffer;
49class OmmRmtesDecoder;
50
52{
53public :
54
56
57
61
66
70 const EmaBuffer& getAsHex() const;
71
75 const EmaString& toString() const;
76
80 const RmtesBuffer& getRmtes() const;
82
83private :
84
85 friend class Decoder;
86 friend class StaticDecoder;
87
88 const EmaString& toString( UInt64 ) const;
89
90 Decoder& getDecoder();
91 bool hasDecoder() const;
92 Decoder& setDecoder( Decoder& );
93 const Encoder& getEncoder() const;
94 bool hasEncoder() const;
95
96 OmmRmtes();
97 virtual ~~OmmRmtes();
98 OmmRmtes( const OmmRmtes& );
99 OmmRmtes& operator=( const OmmRmtes& );
100
101 OmmRmtesDecoder* _pDecoder;
102 UInt64 _space[35];
103};
104
105}
106
107}
108
109}
110
111#endif // __refinitiv_ema_access_OmmRmtes_h
#define EMA_ACCESS_API
Definition: Common.h:95
*|--------------------------------------------------------------------------—
Definition: AckMsg.h:62
unsigned long long UInt64
represents 64-bit unsigned integer
Definition: Common.h:68
The access namespace contains all interfaces and definitions specified for use with the EMA Access pa...
The ema namespace contains all interfaces and definitions specified for use with EMA.
Data class is a parent abstract class defining common interfaces for all Data type classes.
Definition: Data.h:39
EmaBuffer represents a general use binary buffer.
Definition: EmaBuffer.h:33
EmaString class is a container of a null terminated Ascii character string.
Definition: EmaString.h:57
OmmRmtes represents Rmtes string value in Omm.
Definition: OmmRmtes.h:52
const RmtesBuffer & getRmtes() const
const EmaBuffer & getAsHex() const
Data::DataCode getCode() const
DataType::DataTypeEnum getDataType() const
const EmaString & toString() const
RmtesBuffer represents RMTES data.
Definition: RmtesBuffer.h:55