Namespaces | |
| namespace | details |
Functions | |
| template<class Mantissa, class Exponent> | |
| std::string | toStr (const FixedPointDecimal< Mantissa, Exponent > &number) |
| template<class Mantissa, class Exponent> | |
| std::string | toStr (const FloatingPointDecimal< Mantissa, Exponent > &number) |
| bool | quantize (const Decimal &operand, Int32 exponent, Decimal &quantized) |
| Decimal | quantize (const Decimal &operand, Int32 exponent) |
| template<class MantissaType> | |
| MantissaType | quantizedMantissa (const Decimal &operand, Int32 exponent) |
| template<class MantissaType, class ExponentType> | |
| void | convert (FixedPointDecimal< MantissaType, ExponentType > &res, const Decimal &number) |
| template<class MantissaType, class ExponentType> | |
| void | convert (FloatingPointDecimal< MantissaType, ExponentType > &res, const Decimal &number) |
| template<class DecimalT> | |
| EnableIf< details::IsDecimal< DecimalT >::value, DecimalT >::type | convert (const Decimal &number) |
| bool | fromStr (Decimal &, const Char *, size_t) noexcept |
| bool | fromStr (Decimal &value, const std::string &str) noexcept |
| template<class Mantissa, class Exponent> | |
| void | toStr (std::string &str, const FloatingPointDecimal< Mantissa, Exponent > &number) |
| template<class Mantissa, class Exponent> | |
| std::ostream & | operator<< (std::ostream &stream, const FloatingPointDecimal< Mantissa, Exponent > &value) |
| template<class Mantissa, class Exponent> | |
| void | toStr (std::string &str, const FixedPointDecimal< Mantissa, Exponent > &number) |
| std::ostream & | operator<< (std::ostream &stream, const Decimal &value) |
| template<class Mantissa, class Exponent> | |
| std::ostream & | operator<< (std::ostream &stream, const FixedPointDecimal< Mantissa, Exponent > &value) |
| template<class Mantissa, class Exponent> | |
| bool | operator== (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Mantissa, class Exponent> | |
| bool | operator!= (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Mantissa, class Exponent> | |
| bool | operator< (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Mantissa, class Exponent> | |
| bool | operator> (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Mantissa, class Exponent> | |
| bool | operator<= (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Mantissa, class Exponent> | |
| bool | operator>= (const FixedPointDecimal< Mantissa, Exponent > &left, const FixedPointDecimal< Mantissa, Exponent > &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator== (const Decimal1 &left, const Decimal2 &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator!= (const Decimal1 &left, const Decimal2 &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator> (const Decimal1 &left, const Decimal2 &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator>= (const Decimal1 &left, const Decimal2 &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator< (const Decimal1 &left, const Decimal2 &right) |
| template<class Decimal1, class Decimal2> | |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type | operator<= (const Decimal1 &left, const Decimal2 &right) |
| void | toStr (std::string &, Int8) |
| std::string | toStr (Int8 number) |
| void | toStr (std::string &, UInt8) |
| std::string | toStr (UInt8 number) |
| void | toStr (std::string &, Int16) |
| std::string | toStr (Int16 number) |
| void | toStr (std::string &, UInt16) |
| std::string | toStr (UInt16 number) |
| void | toStr (std::string &, Int32) |
| std::string | toStr (Int32 number) |
| void | toStr (std::string &, UInt32) |
| std::string | toStr (UInt32 number) |
| void | toStr (std::string &, Int64) |
| std::string | toStr (Int64 number) |
| void | toStr (std::string &, UInt64) |
| std::string | toStr (UInt64 number) |
| size_t | toStr (Int8, Char *, size_t) |
| size_t | toStr (UInt8, Char *, size_t) |
| size_t | toStr (Int16, Char *, size_t) |
| size_t | toStr (UInt16, Char *, size_t) |
| size_t | toStr (Int32, Char *, size_t) |
| size_t | toStr (UInt32, Char *, size_t) |
| size_t | toStr (Int64, Char *, size_t) |
| size_t | toStr (UInt64, Char *, size_t) |
| template<typename Type, Type Constant> | |
| void | toStr (std::string &str, IntegralConstant< Type, Constant > constant) |
| template<typename Type, Type Constant> | |
| std::string | toStr (IntegralConstant< Type, Constant > constant) |
| bool | fromStr (Int8 &, const Char *, size_t) noexcept |
| bool | fromStr (Int8 &value, const std::string &str) noexcept |
| bool | fromStr (UInt8 &, const Char *, size_t) noexcept |
| bool | fromStr (UInt8 &value, const std::string &str) noexcept |
| bool | fromStr (Int16 &, const Char *, size_t) noexcept |
| bool | fromStr (Int16 &value, const std::string &str) noexcept |
| bool | fromStr (UInt16 &, const Char *, size_t) noexcept |
| bool | fromStr (UInt16 &value, const std::string &str) noexcept |
| bool | fromStr (Int32 &, const Char *, size_t) noexcept |
| bool | fromStr (Int32 &value, const std::string &str) noexcept |
| bool | fromStr (UInt32 &, const Char *, size_t) noexcept |
| bool | fromStr (UInt32 &value, const std::string &str) noexcept |
| bool | fromStr (Int64 &, const Char *, size_t) noexcept |
| bool | fromStr (Int64 &value, const std::string &str) noexcept |
| bool | fromStr (UInt64 &, const Char *, size_t) noexcept |
| bool | fromStr (UInt64 &value, const std::string &str) noexcept |
| Messaging::SchemaVersion | getMessagingVersion (const Session &) noexcept |
| template<template< typename, size_t, typename > class HolderType, typename MsgType, size_t MaxMessageSize, typename MessageInitializer> | |
| void | toStr (std::string &str, const HolderType< MsgType, MaxMessageSize, MessageInitializer > &holder, bool skipHeader=false, bool skipEmptyFields=false) |
| template<template< typename, size_t, typename > class HolderType, typename MsgType, size_t MaxMessageSize, typename MessageInitializer> | |
| std::string | toStr (const HolderType< MsgType, MaxMessageSize, MessageInitializer > &holder, bool skipHeader=false, bool skipEmptyFields=false) |
| template<template< typename, size_t, typename > class HolderType, typename MsgType, size_t MaxMessageSize, typename MessageInitializer> | |
| std::ostream & | operator<< (std::ostream &stream, const HolderType< MsgType, MaxMessageSize, MessageInitializer > &rhs) |
| template<typename Traits> | |
| void | checkVersion (SchemaVersion version) |
| template<typename Traits> | |
| void | checkVersion (SchemaVersion since, SchemaVersion version) |
| template<typename Traits> | |
| void | checkSchemaId (SchemaId id) |
| template<typename Traits> | |
| void | checkSchema (SchemaId id, SchemaVersion version) |
| void | toStr (std::string &str, Char character) |
| void | toStr (std::string &str, const std::string &value) |
| std::string | toStr (Char character) |
| StrRef | toStrRef (const std::string &str) |
| StrRef | toStrRef (const Char *cStr) noexcept |
| template<size_t Size> | |
| constexpr StrRef | constructStrRef (const char(&value)[Size]) noexcept |
| template<size_t Size> | |
| constexpr StrRef | strRefFromCharArray (const char(&value)[Size]) noexcept |
| std::string | toStr (const StrRef &ref) |
| void | toStr (std::string &str, const StrRef &ref) |
| bool | operator== (const TimeSpan &left, const TimeSpan &right) noexcept |
| bool | operator!= (const TimeSpan &left, const TimeSpan &right) noexcept |
| bool | operator< (const TimeSpan &left, const TimeSpan &right) noexcept |
| bool | operator> (const TimeSpan &left, const TimeSpan &right) noexcept |
| TimeSpan | operator- (const TimeSpan &timeSpan) noexcept |
| void | toStrAsHHMMSS (std::string &, TimeSpan) |
| void | toStrAsHHMMSSmsec (std::string &, TimeSpan) |
| void | toStrAsHHMMSSusec (std::string &, TimeSpan) |
| void | toStrAsHHMMSSnsec (std::string &, TimeSpan) |
| void | toStrAsHHMMSSpsec (std::string &, TimeSpan) |
| void | toStrAsSDHHMMSSnsec (std::string &, TimeSpan) |
| void | toStr (std::string &, TimeSpan, TimeSpanFormat::Enum=TimeSpanFormat::SDHHMMSSnsec) |
| std::string | toStr (TimeSpan timeSpan, TimeSpanFormat::Enum format=TimeSpanFormat::SDHHMMSSnsec) |
| Timestamp | makeTimestamp (Timestamp::Ticks ticks) noexcept |
| bool | operator== (const Timestamp &left, const Timestamp &right) noexcept |
| bool | operator!= (const Timestamp &left, const Timestamp &right) noexcept |
| bool | operator< (const Timestamp &left, const Timestamp &right) noexcept |
| bool | operator<= (const Timestamp &left, const Timestamp &right) noexcept |
| bool | operator> (const Timestamp &left, const Timestamp &right) noexcept |
| bool | operator>= (const Timestamp &left, const Timestamp &right) noexcept |
| Timestamp | operator+ (const Timestamp ×tamp, const TimeSpan &timeSpan) noexcept |
| Timestamp | operator- (const Timestamp ×tamp, const TimeSpan &timeSpan) noexcept |
| TimeSpan | operator- (const Timestamp &left, const Timestamp &right) noexcept |
| void | toStrAsYYYYMMDD (std::string &, Timestamp) |
| void | toStrAsYYYYMMDDHHMMSS (std::string &, Timestamp) |
| void | toStrAsYYYYMMDDHHMMSSmsec (std::string &, Timestamp) |
| void | toStrAsYYYYMMDDHHMMSSusec (std::string &, Timestamp) |
| void | toStrAsYYYYMMDDHHMMSSnsec (std::string &, Timestamp) |
| void | toStrAsYYYYMMDDHHMMSSpsec (std::string &, Timestamp) |
| void | toStr (std::string &, Timestamp, TimestampFormat::Enum=TimestampFormat::YYYYMMDDHHMMSSnsec) |
| std::string | toStr (Timestamp timestamp, TimestampFormat::Enum format=TimestampFormat::YYYYMMDDHHMMSSnsec) |
| size_t | toStr (Timestamp, Char *, size_t) |
| std::ostream & | operator<< (std::ostream &os, const Timestamp &value) |
| std::ostream & | operator<< (std::ostream &os, const TimeSpan &value) |
| bool | fromStr (TimeSpan &, const Char *, size_t) |
| bool | fromStr (TimeSpan &ts, const std::string &str) |
| bool | fromStr (Timestamp &, const Char *, size_t, TimestampFormat::Enum=TimestampFormat::YYYYMMDDHHMMSSnsec) |
| bool | fromStr (Timestamp &ts, const std::string &str, TimestampFormat::Enum format=TimestampFormat::YYYYMMDDHHMMSSnsec) |
| template<typename Message> | |
| constexpr MessageSize | calculateMaxMessageSize (UInt8 maxGroupItems) |
| template<typename Message> | |
| constexpr std::enable_if< MaxMessageSizeTraits< Message >::UseCustomValue, MessageSize >::type | getMaxMessageSize (UInt8) |
| template<typename Message> | |
| constexpr std::enable_if<!MaxMessageSizeTraits< Message >::UseCustomValue, MessageSize >::type | getMaxMessageSize (UInt8 maxGroupItems) |
| ONIXS_B3_BOE_DATA_PACKING_END void | toStr (std::string &, const SimpleOpenFramingHeader &) |
| std::string | toStr (const SimpleOpenFramingHeader &header) |
| void | toStr (std::string &, const NetworkMessage &, bool skipHeader=false, bool skipEmptyFields=false) |
| std::string | toStr (const NetworkMessage &message, bool skipHeader=false, bool skipEmptyFields=false) |
| Timestamp | localMktDateToTimestamp (LocalMktDate days) noexcept |
| LocalMktDate | timestampToLocalMktDate (const Timestamp ×tamp) noexcept |
| void | toStr (std::string &str, const Negotiate1 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Negotiate1 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Negotiate1 &obj) |
| void | toFix (std::string &str, const Negotiate1 &obj) |
| void | toStr (std::string &str, const NegotiateResponse2 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NegotiateResponse2 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NegotiateResponse2 &obj) |
| void | toFix (std::string &str, const NegotiateResponse2 &obj) |
| void | toStr (std::string &str, const NegotiateReject3 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NegotiateReject3 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NegotiateReject3 &obj) |
| void | toFix (std::string &str, const NegotiateReject3 &obj) |
| void | toStr (std::string &str, const Establish4 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Establish4 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Establish4 &obj) |
| void | toFix (std::string &str, const Establish4 &obj) |
| void | toStr (std::string &str, const EstablishAck5 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const EstablishAck5 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const EstablishAck5 &obj) |
| void | toFix (std::string &str, const EstablishAck5 &obj) |
| void | toStr (std::string &str, const EstablishReject6 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const EstablishReject6 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const EstablishReject6 &obj) |
| void | toFix (std::string &str, const EstablishReject6 &obj) |
| void | toStr (std::string &str, const Terminate7 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Terminate7 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Terminate7 &obj) |
| void | toFix (std::string &str, const Terminate7 &obj) |
| void | toStr (std::string &str, const NotApplied8 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NotApplied8 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NotApplied8 &obj) |
| void | toFix (std::string &str, const NotApplied8 &obj) |
| void | toStr (std::string &str, const Sequence9 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Sequence9 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Sequence9 &obj) |
| void | toFix (std::string &str, const Sequence9 &obj) |
| void | toStr (std::string &str, const RetransmitRequest12 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const RetransmitRequest12 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const RetransmitRequest12 &obj) |
| void | toFix (std::string &str, const RetransmitRequest12 &obj) |
| void | toStr (std::string &str, const Retransmission13 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Retransmission13 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Retransmission13 &obj) |
| void | toFix (std::string &str, const Retransmission13 &obj) |
| void | toStr (std::string &str, const RetransmitReject14 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const RetransmitReject14 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const RetransmitReject14 &obj) |
| void | toFix (std::string &str, const RetransmitReject14 &obj) |
| void | toStr (std::string &str, const SimpleNewOrder100 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const SimpleNewOrder100 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const SimpleNewOrder100 &obj) |
| void | toFix (std::string &str, const SimpleNewOrder100 &obj) |
| void | toStr (std::string &str, const SimpleModifyOrder101 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const SimpleModifyOrder101 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const SimpleModifyOrder101 &obj) |
| void | toFix (std::string &str, const SimpleModifyOrder101 &obj) |
| void | toStr (std::string &str, const NewOrderSingle102 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NewOrderSingle102 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NewOrderSingle102 &obj) |
| void | toFix (std::string &str, const NewOrderSingle102 &obj) |
| void | toStr (std::string &str, const OrderCancelReplaceRequest104 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const OrderCancelReplaceRequest104 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const OrderCancelReplaceRequest104 &obj) |
| void | toFix (std::string &str, const OrderCancelReplaceRequest104 &obj) |
| void | toStr (std::string &str, const OrderCancelRequest105 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const OrderCancelRequest105 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const OrderCancelRequest105 &obj) |
| void | toFix (std::string &str, const OrderCancelRequest105 &obj) |
| void | toStr (std::string &str, const NewOrderCross106 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NewOrderCross106 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NewOrderCross106 &obj) |
| void | toFix (std::string &str, const NewOrderCross106 &obj) |
| void | toStr (std::string &str, const NewOrderCross106::SidesEntry &obj, bool skipEmptyFields=false) |
| std::string | toStr (const NewOrderCross106::SidesEntry &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const NewOrderCross106::SidesEntry &obj) |
| void | toStr (std::string &str, const ExecutionReportNew200 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportNew200 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportNew200 &obj) |
| void | toFix (std::string &str, const ExecutionReportNew200 &obj) |
| void | toStr (std::string &str, const ExecutionReportModify201 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportModify201 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportModify201 &obj) |
| void | toFix (std::string &str, const ExecutionReportModify201 &obj) |
| void | toStr (std::string &str, const ExecutionReportCancel202 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportCancel202 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportCancel202 &obj) |
| void | toFix (std::string &str, const ExecutionReportCancel202 &obj) |
| void | toStr (std::string &str, const ExecutionReportTrade203 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportTrade203 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportTrade203 &obj) |
| void | toFix (std::string &str, const ExecutionReportTrade203 &obj) |
| void | toStr (std::string &str, const ExecutionReportReject204 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportReject204 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportReject204 &obj) |
| void | toFix (std::string &str, const ExecutionReportReject204 &obj) |
| void | toStr (std::string &str, const ExecutionReportForward205 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ExecutionReportForward205 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ExecutionReportForward205 &obj) |
| void | toFix (std::string &str, const ExecutionReportForward205 &obj) |
| void | toStr (std::string &str, const BusinessMessageReject206 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const BusinessMessageReject206 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const BusinessMessageReject206 &obj) |
| void | toFix (std::string &str, const BusinessMessageReject206 &obj) |
| void | toStr (std::string &str, const SecurityDefinitionRequest300 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const SecurityDefinitionRequest300 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const SecurityDefinitionRequest300 &obj) |
| void | toFix (std::string &str, const SecurityDefinitionRequest300 &obj) |
| void | toStr (std::string &str, const SecurityDefinitionRequest300::LegsEntry &obj, bool skipEmptyFields=false) |
| std::string | toStr (const SecurityDefinitionRequest300::LegsEntry &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const SecurityDefinitionRequest300::LegsEntry &obj) |
| void | toStr (std::string &str, const SecurityDefinitionResponse301 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const SecurityDefinitionResponse301 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const SecurityDefinitionResponse301 &obj) |
| void | toFix (std::string &str, const SecurityDefinitionResponse301 &obj) |
| void | toStr (std::string &str, const QuoteRequest401 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteRequest401 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteRequest401 &obj) |
| void | toFix (std::string &str, const QuoteRequest401 &obj) |
| void | toStr (std::string &str, const QuoteRequest401::SidesEntry &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteRequest401::SidesEntry &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteRequest401::SidesEntry &obj) |
| void | toStr (std::string &str, const QuoteStatusReport402 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteStatusReport402 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteStatusReport402 &obj) |
| void | toFix (std::string &str, const QuoteStatusReport402 &obj) |
| void | toStr (std::string &str, const Quote403 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Quote403 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Quote403 &obj) |
| void | toFix (std::string &str, const Quote403 &obj) |
| void | toStr (std::string &str, const QuoteCancel404 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteCancel404 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteCancel404 &obj) |
| void | toFix (std::string &str, const QuoteCancel404 &obj) |
| void | toStr (std::string &str, const QuoteRequestReject405 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteRequestReject405 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteRequestReject405 &obj) |
| void | toFix (std::string &str, const QuoteRequestReject405 &obj) |
| void | toStr (std::string &str, const QuoteRequestReject405::SidesEntry &obj, bool skipEmptyFields=false) |
| std::string | toStr (const QuoteRequestReject405::SidesEntry &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const QuoteRequestReject405::SidesEntry &obj) |
| void | toStr (std::string &str, const PositionMaintenanceCancelRequest501 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const PositionMaintenanceCancelRequest501 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const PositionMaintenanceCancelRequest501 &obj) |
| void | toFix (std::string &str, const PositionMaintenanceCancelRequest501 &obj) |
| void | toStr (std::string &str, const PositionMaintenanceRequest502 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const PositionMaintenanceRequest502 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const PositionMaintenanceRequest502 &obj) |
| void | toFix (std::string &str, const PositionMaintenanceRequest502 &obj) |
| void | toStr (std::string &str, const PositionMaintenanceReport503 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const PositionMaintenanceReport503 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const PositionMaintenanceReport503 &obj) |
| void | toFix (std::string &str, const PositionMaintenanceReport503 &obj) |
| void | toStr (std::string &str, const PositionMaintenanceReport503::PositionsEntry &obj, bool skipEmptyFields=false) |
| std::string | toStr (const PositionMaintenanceReport503::PositionsEntry &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const PositionMaintenanceReport503::PositionsEntry &obj) |
| void | toStr (std::string &str, const AllocationInstruction601 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const AllocationInstruction601 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const AllocationInstruction601 &obj) |
| void | toFix (std::string &str, const AllocationInstruction601 &obj) |
| void | toStr (std::string &str, const AllocationReport602 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const AllocationReport602 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const AllocationReport602 &obj) |
| void | toFix (std::string &str, const AllocationReport602 &obj) |
| void | toStr (std::string &str, const OrderMassActionRequest701 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const OrderMassActionRequest701 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const OrderMassActionRequest701 &obj) |
| void | toFix (std::string &str, const OrderMassActionRequest701 &obj) |
| void | toStr (std::string &str, const OrderMassActionReport702 &obj, bool skipEmptyFields=false) |
| std::string | toStr (const OrderMassActionReport702 &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const OrderMassActionReport702 &obj) |
| void | toFix (std::string &str, const OrderMassActionReport702 &obj) |
| template<typename Value> | |
| bool | isValueEmpty (const Value &value) |
| template<typename Value> | |
| void | toStr (std::string &str, const Value &value, bool skipEmptyFields) |
| void | toStr (std::string &str, Boolean::Enum value) |
| std::string | toStr (Boolean::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, Boolean::Enum value) |
| void | toFix (std::string &str, Boolean::Enum value) |
| void | toStr (std::string &str, AllocTransType::Enum value) |
| std::string | toStr (AllocTransType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AllocTransType::Enum value) |
| void | toFix (std::string &str, AllocTransType::Enum value) |
| void | toStr (std::string &str, AllocReportType::Enum value) |
| std::string | toStr (AllocReportType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AllocReportType::Enum value) |
| void | toFix (std::string &str, AllocReportType::Enum value) |
| void | toStr (std::string &str, AllocType::Enum value) |
| std::string | toStr (AllocType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AllocType::Enum value) |
| void | toFix (std::string &str, AllocType::Enum value) |
| void | toStr (std::string &str, AllocNoOrdersType::Enum value) |
| std::string | toStr (AllocNoOrdersType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AllocNoOrdersType::Enum value) |
| void | toFix (std::string &str, AllocNoOrdersType::Enum value) |
| void | toStr (std::string &str, AllocStatus::Enum value) |
| std::string | toStr (AllocStatus::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AllocStatus::Enum value) |
| void | toFix (std::string &str, AllocStatus::Enum value) |
| void | toStr (std::string &str, QuoteStatus::Enum value) |
| std::string | toStr (QuoteStatus::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, QuoteStatus::Enum value) |
| void | toFix (std::string &str, QuoteStatus::Enum value) |
| void | toStr (std::string &str, QuoteStatusResponseTo::Enum value) |
| std::string | toStr (QuoteStatusResponseTo::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, QuoteStatusResponseTo::Enum value) |
| void | toFix (std::string &str, QuoteStatusResponseTo::Enum value) |
| void | toStr (std::string &str, QuoteCancelType::Enum value) |
| std::string | toStr (QuoteCancelType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, QuoteCancelType::Enum value) |
| void | toFix (std::string &str, QuoteCancelType::Enum value) |
| void | toStr (std::string &str, PosType::Enum value) |
| std::string | toStr (PosType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, PosType::Enum value) |
| void | toFix (std::string &str, PosType::Enum value) |
| void | toStr (std::string &str, MassActionScope::Enum value) |
| std::string | toStr (MassActionScope::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MassActionScope::Enum value) |
| void | toFix (std::string &str, MassActionScope::Enum value) |
| void | toStr (std::string &str, MassActionType::Enum value) |
| std::string | toStr (MassActionType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MassActionType::Enum value) |
| void | toFix (std::string &str, MassActionType::Enum value) |
| void | toStr (std::string &str, MassActionResponse::Enum value) |
| std::string | toStr (MassActionResponse::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MassActionResponse::Enum value) |
| void | toFix (std::string &str, MassActionResponse::Enum value) |
| void | toStr (std::string &str, MassActionRejectReason::Enum value) |
| std::string | toStr (MassActionRejectReason::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MassActionRejectReason::Enum value) |
| void | toFix (std::string &str, MassActionRejectReason::Enum value) |
| void | toStr (std::string &str, SecurityResponseType::Enum value) |
| std::string | toStr (SecurityResponseType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SecurityResponseType::Enum value) |
| void | toFix (std::string &str, SecurityResponseType::Enum value) |
| void | toStr (std::string &str, PosMaintStatus::Enum value) |
| std::string | toStr (PosMaintStatus::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, PosMaintStatus::Enum value) |
| void | toFix (std::string &str, PosMaintStatus::Enum value) |
| void | toStr (std::string &str, ExecuteUnderlyingTrade::Enum value) |
| std::string | toStr (ExecuteUnderlyingTrade::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, ExecuteUnderlyingTrade::Enum value) |
| void | toFix (std::string &str, ExecuteUnderlyingTrade::Enum value) |
| void | toStr (std::string &str, PosTransType::Enum value) |
| std::string | toStr (PosTransType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, PosTransType::Enum value) |
| void | toFix (std::string &str, PosTransType::Enum value) |
| void | toStr (std::string &str, PosMaintAction::Enum value) |
| std::string | toStr (PosMaintAction::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, PosMaintAction::Enum value) |
| void | toFix (std::string &str, PosMaintAction::Enum value) |
| void | toStr (std::string &str, SettlType::Enum value) |
| std::string | toStr (SettlType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SettlType::Enum value) |
| void | toFix (std::string &str, SettlType::Enum value) |
| void | toStr (std::string &str, SelfTradePreventionInstruction::Enum value) |
| std::string | toStr (SelfTradePreventionInstruction::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SelfTradePreventionInstruction::Enum value) |
| void | toFix (std::string &str, SelfTradePreventionInstruction::Enum value) |
| void | toStr (std::string &str, TimeUnit::Enum value) |
| std::string | toStr (TimeUnit::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, TimeUnit::Enum value) |
| void | toFix (std::string &str, TimeUnit::Enum value) |
| void | toStr (std::string &str, MessageType::Enum value) |
| std::string | toStr (MessageType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MessageType::Enum value) |
| void | toFix (std::string &str, MessageType::Enum value) |
| void | toStr (std::string &str, FlowType::Enum value) |
| std::string | toStr (FlowType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, FlowType::Enum value) |
| void | toFix (std::string &str, FlowType::Enum value) |
| void | toStr (std::string &str, NegotiationRejectCode::Enum value) |
| std::string | toStr (NegotiationRejectCode::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, NegotiationRejectCode::Enum value) |
| void | toFix (std::string &str, NegotiationRejectCode::Enum value) |
| void | toStr (std::string &str, EstablishRejectCode::Enum value) |
| std::string | toStr (EstablishRejectCode::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, EstablishRejectCode::Enum value) |
| void | toFix (std::string &str, EstablishRejectCode::Enum value) |
| void | toStr (std::string &str, TerminationCode::Enum value) |
| std::string | toStr (TerminationCode::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, TerminationCode::Enum value) |
| void | toFix (std::string &str, TerminationCode::Enum value) |
| void | toStr (std::string &str, RetransmitRejectCode::Enum value) |
| std::string | toStr (RetransmitRejectCode::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, RetransmitRejectCode::Enum value) |
| void | toFix (std::string &str, RetransmitRejectCode::Enum value) |
| void | toStr (std::string &str, CancelOnDisconnectType::Enum value) |
| std::string | toStr (CancelOnDisconnectType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CancelOnDisconnectType::Enum value) |
| void | toFix (std::string &str, CancelOnDisconnectType::Enum value) |
| void | toStr (std::string &str, Side::Enum value) |
| std::string | toStr (Side::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, Side::Enum value) |
| void | toFix (std::string &str, Side::Enum value) |
| void | toStr (std::string &str, TimeInForce::Enum value) |
| std::string | toStr (TimeInForce::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, TimeInForce::Enum value) |
| void | toFix (std::string &str, TimeInForce::Enum value) |
| void | toStr (std::string &str, SimpleTimeInForce::Enum value) |
| std::string | toStr (SimpleTimeInForce::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SimpleTimeInForce::Enum value) |
| void | toFix (std::string &str, SimpleTimeInForce::Enum value) |
| void | toStr (std::string &str, OrdType::Enum value) |
| std::string | toStr (OrdType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, OrdType::Enum value) |
| void | toFix (std::string &str, OrdType::Enum value) |
| void | toStr (std::string &str, SimpleOrdType::Enum value) |
| std::string | toStr (SimpleOrdType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SimpleOrdType::Enum value) |
| void | toFix (std::string &str, SimpleOrdType::Enum value) |
| void | toStr (std::string &str, CrossOrdType::Enum value) |
| std::string | toStr (CrossOrdType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CrossOrdType::Enum value) |
| void | toFix (std::string &str, CrossOrdType::Enum value) |
| void | toStr (std::string &str, RoutingInstruction::Enum value) |
| std::string | toStr (RoutingInstruction::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, RoutingInstruction::Enum value) |
| void | toFix (std::string &str, RoutingInstruction::Enum value) |
| void | toStr (std::string &str, ExecType::Enum value) |
| std::string | toStr (ExecType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, ExecType::Enum value) |
| void | toFix (std::string &str, ExecType::Enum value) |
| void | toStr (std::string &str, OrdStatus::Enum value) |
| std::string | toStr (OrdStatus::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, OrdStatus::Enum value) |
| void | toFix (std::string &str, OrdStatus::Enum value) |
| void | toStr (std::string &str, ExecRestatementReasonValidForSingleCancel::Enum value) |
| std::string | toStr (ExecRestatementReasonValidForSingleCancel::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, ExecRestatementReasonValidForSingleCancel::Enum value) |
| void | toFix (std::string &str, ExecRestatementReasonValidForSingleCancel::Enum value) |
| void | toStr (std::string &str, ExecRestatementReasonValidForMassCancel::Enum value) |
| std::string | toStr (ExecRestatementReasonValidForMassCancel::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, ExecRestatementReasonValidForMassCancel::Enum value) |
| void | toFix (std::string &str, ExecRestatementReasonValidForMassCancel::Enum value) |
| void | toStr (std::string &str, ExecRestatementReason::Enum value) |
| std::string | toStr (ExecRestatementReason::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, ExecRestatementReason::Enum value) |
| void | toFix (std::string &str, ExecRestatementReason::Enum value) |
| void | toStr (std::string &str, MultiLegReportingType::Enum value) |
| std::string | toStr (MultiLegReportingType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, MultiLegReportingType::Enum value) |
| void | toFix (std::string &str, MultiLegReportingType::Enum value) |
| void | toStr (std::string &str, OrderCategory::Enum value) |
| std::string | toStr (OrderCategory::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, OrderCategory::Enum value) |
| void | toFix (std::string &str, OrderCategory::Enum value) |
| void | toStr (std::string &str, AccountType::Enum value) |
| std::string | toStr (AccountType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, AccountType::Enum value) |
| void | toFix (std::string &str, AccountType::Enum value) |
| void | toStr (std::string &str, CxlRejResponseTo::Enum value) |
| std::string | toStr (CxlRejResponseTo::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CxlRejResponseTo::Enum value) |
| void | toFix (std::string &str, CxlRejResponseTo::Enum value) |
| void | toStr (std::string &str, PossResend::Enum value) |
| std::string | toStr (PossResend::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, PossResend::Enum value) |
| void | toFix (std::string &str, PossResend::Enum value) |
| void | toStr (std::string &str, SecurityIDSource::Enum value) |
| std::string | toStr (SecurityIDSource::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SecurityIDSource::Enum value) |
| void | toFix (std::string &str, SecurityIDSource::Enum value) |
| void | toStr (std::string &str, CrossedIndicator::Enum value) |
| std::string | toStr (CrossedIndicator::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CrossedIndicator::Enum value) |
| void | toFix (std::string &str, CrossedIndicator::Enum value) |
| void | toStr (std::string &str, TradingSessionID::Enum value) |
| std::string | toStr (TradingSessionID::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, TradingSessionID::Enum value) |
| void | toFix (std::string &str, TradingSessionID::Enum value) |
| void | toStr (std::string &str, TradingSessionSubID::Enum value) |
| std::string | toStr (TradingSessionSubID::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, TradingSessionSubID::Enum value) |
| void | toFix (std::string &str, TradingSessionSubID::Enum value) |
| void | toStr (std::string &str, SecurityTradingStatus::Enum value) |
| std::string | toStr (SecurityTradingStatus::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, SecurityTradingStatus::Enum value) |
| void | toFix (std::string &str, SecurityTradingStatus::Enum value) |
| void | toStr (std::string &str, CrossType::Enum value) |
| std::string | toStr (CrossType::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CrossType::Enum value) |
| void | toFix (std::string &str, CrossType::Enum value) |
| void | toStr (std::string &str, CrossPrioritization::Enum value) |
| std::string | toStr (CrossPrioritization::Enum value) |
| std::ostream & | operator<< (std::ostream &stream, CrossPrioritization::Enum value) |
| void | toFix (std::string &str, CrossPrioritization::Enum value) |
| void | toStr (std::string &str, EventIndicator set) |
| std::string | toStr (EventIndicator set) |
| std::ostream & | operator<< (std::ostream &stream, EventIndicator set) |
| void | toFix (std::string &str, EventIndicator set) |
| void | toStr (std::string &str, const GroupSizeEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const GroupSizeEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const GroupSizeEncoding &obj) |
| void | toStr (std::string &str, const PriceOffsetOptional &obj, bool skipEmptyFields=false) |
| std::string | toStr (const PriceOffsetOptional &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const PriceOffsetOptional &obj) |
| void | toStr (std::string &str, const Percentage8Optional &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Percentage8Optional &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Percentage8Optional &obj) |
| void | toStr (std::string &str, const RatioQty &obj, bool skipEmptyFields=false) |
| std::string | toStr (const RatioQty &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const RatioQty &obj) |
| void | toStr (std::string &str, const UTCTimestampNanos &obj, bool skipEmptyFields=false) |
| std::string | toStr (const UTCTimestampNanos &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const UTCTimestampNanos &obj) |
| void | toStr (std::string &str, const UTCTimestampNanosOptional &obj, bool skipEmptyFields=false) |
| std::string | toStr (const UTCTimestampNanosOptional &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const UTCTimestampNanosOptional &obj) |
| void | toStr (std::string &str, const DeltaInMillis &obj, bool skipEmptyFields=false) |
| std::string | toStr (const DeltaInMillis &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const DeltaInMillis &obj) |
| void | toStr (std::string &str, const CredentialsEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const CredentialsEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const CredentialsEncoding &obj) |
| void | toStr (std::string &str, const MemoEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const MemoEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const MemoEncoding &obj) |
| void | toStr (std::string &str, const TextEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const TextEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const TextEncoding &obj) |
| void | toStr (std::string &str, const DeskIDEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const DeskIDEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const DeskIDEncoding &obj) |
| void | toStr (std::string &str, const ClientAppEncoding &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ClientAppEncoding &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ClientAppEncoding &obj) |
| void | toStr (std::string &str, const CustodianInfo &obj, bool skipEmptyFields=false) |
| std::string | toStr (const CustodianInfo &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const CustodianInfo &obj) |
| void | toStr (std::string &str, const InboundBusinessHeader &obj, bool skipEmptyFields=false) |
| std::string | toStr (const InboundBusinessHeader &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const InboundBusinessHeader &obj) |
| void | toStr (std::string &str, const OutboundBusinessHeader &obj, bool skipEmptyFields=false) |
| std::string | toStr (const OutboundBusinessHeader &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const OutboundBusinessHeader &obj) |
| void | toStr (std::string &str, const BidirectionalBusinessHeader &obj, bool skipEmptyFields=false) |
| std::string | toStr (const BidirectionalBusinessHeader &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const BidirectionalBusinessHeader &obj) |
| void | toStr (std::string &str, const InvestorID &obj, bool skipEmptyFields=false) |
| std::string | toStr (const InvestorID &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const InvestorID &obj) |
| void | toStr (std::string &str, const ImpliedEventID &obj, bool skipEmptyFields=false) |
| std::string | toStr (const ImpliedEventID &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const ImpliedEventID &obj) |
| void | toStr (std::string &str, const Version &obj, bool skipEmptyFields=false) |
| std::string | toStr (const Version &obj, bool skipEmptyFields=false) |
| std::ostream & | operator<< (std::ostream &stream, const Version &obj) |
| template<class Message> | |
| Message | typify (const SbeMessage &message) |
| template<class Processor> | |
| bool | processTypified (SbeMessage binary, const Processor &processor) |
Variables | |
| constexpr UInt8 | DefaultMaxGroupItems = 100 |
| constexpr UInt16 | MaxB3BOEMessageSize = 65535 - sizeof(SimpleOpenFramingHeader) |
| constexpr UInt16 | B3BOESbeEncodingType = 0xEB50 |
| typedef UInt32 AccountOptional |
| typedef UInt64 AllocID |
| typedef UInt64 AllocReportID |
| typedef UInt64 BusinessRejectRefID |
| typedef UInt64 ClOrdID |
| typedef UInt64 ClOrdIDOptional |
| typedef UInt64 CrossID |
| typedef UInt64 CrossIDOptional |
| typedef UInt16 DaysToSettlement |
| typedef UInt16 DaysToSettlementOptional |
| typedef FloatingPointDecimal<Int64, Int32> Decimal |
Universal decimal type.
Definition at line 37 of file Decimal.Operations.h.
| typedef UInt64 ExecID |
| typedef UInt64 ExecIDOptional |
| typedef UInt32 Firm |
| typedef UInt32 FirmOptional |
| typedef UInt16 LocalMktDate |
Local calendar date: days since Unix epoch (January 1st, 1970).
FIX type: LocalMktDate.
| typedef UInt16 LocalMktDateOptional |
Local calendar date: days since Unix epoch (January 1st, 1970).
FIX type: LocalMktDate.
| typedef UInt8 MarketSegmentID |
| typedef UInt8 MarketSegmentIDOptional |
| typedef UInt64 MassActionReportID |
| typedef UInt64 MassActionReportIDOptional |
| typedef UInt32 MessageCounter |
| typedef MessageHeader MessageHeaderBuilder |
Definition at line 2321 of file Composites.h.
| typedef UInt16 MessageSize |
Message type (template) identification.
Definition at line 29 of file ExceptionHelpers.h.
| typedef std::vector<NetworkMessage> NetMessages |
Definition at line 42 of file MessageBatch.h.
| typedef IntegralConstant<UInt32, 0> NullAccountOptional |
Null value for an optional AccountOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullBusinessRejectRefID |
Null value for an optional BusinessRejectRefID field.
| typedef IntegralConstant<Char, '\x0'> NullChar |
| typedef IntegralConstant<UInt64, 0ULL> NullClOrdIDOptional |
Null value for an optional ClOrdIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullCrossIDOptional |
Null value for an optional CrossIDOptional field.
| typedef IntegralConstant<UInt16, 65535> NullDaysToSettlementOptional |
Null value for an optional DaysToSettlementOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullExecIDOptional |
Null value for an optional ExecIDOptional field.
| typedef IntegralConstant<UInt32, 0> NullFirmOptional |
Null value for an optional FirmOptional field.
| typedef IntegralConstant<Int16, -32768> NullInt16 |
| typedef IntegralConstant<Int32, -2147483647-1> NullInt32 |
| typedef IntegralConstant<Int64, -9223372036854775807LL-1> NullInt64 |
| typedef IntegralConstant<Int8, -128> NullInt8 |
| typedef IntegralConstant<UInt16, 0> NullLocalMktDateOptional |
Null value for an optional LocalMktDateOptional field.
| typedef IntegralConstant<UInt8, 0> NullMarketSegmentIDOptional |
Null value for an optional MarketSegmentIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullMassActionReportIDOptional |
Null value for an optional MassActionReportIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullOrderIDOptional |
Null value for an optional OrderIDOptional field.
| typedef IntegralConstant<UInt8, 0> NullOrdTagID |
| typedef IntegralConstant<UInt64, 0ULL> NullPosMaintRptIDOptional |
Null value for an optional PosMaintRptIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullPosReqIDOptional |
Null value for an optional PosReqIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullQuantityOptional |
Null value for an optional QuantityOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullQuoteIDOptional |
Null value for an optional QuoteIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullQuoteReqIDOptional |
Null value for an optional QuoteReqIDOptional field.
| typedef IntegralConstant<UInt32, 0> NullRejReasonOptional |
Null value for an optional RejReasonOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullSecurityIDOptional |
Null value for an optional SecurityIDOptional field.
| typedef IntegralConstant<UInt32, 0> NullSeqNumOptional |
Null value for an optional SeqNumOptional field.
| typedef IntegralConstant<UInt32, 0> NullSessionIDOptional |
Null value for an optional SessionIDOptional field.
| typedef IntegralConstant<UInt64, 0ULL> NullSessionVerIDOptional |
Null value for an optional SessionVerIDOptional field.
| typedef IntegralConstant<Int32, 0> NullStrategyIDOptional |
Null value for an optional StrategyIDOptional field.
| typedef IntegralConstant<UInt8, 0> NullTotNoRelatedSym |
Null value for an optional TotNoRelatedSym field.
| typedef IntegralConstant<UInt32, 0> NullTradeIDOptional |
Null value for an optional TradeIDOptional field.
| typedef IntegralConstant<UInt16, 65535> NullUInt16 |
| typedef IntegralConstant<UInt16, 0> NullUint16EnumEncoding |
Null value for an optional Uint16EnumEncoding field.
| typedef IntegralConstant<UInt32, 4294967295> NullUInt32 |
| typedef IntegralConstant<UInt64, 18446744073709551615ULL> NullUInt64 |
| typedef IntegralConstant<UInt8, 255> NullUInt8 |
| typedef IntegralConstant<UInt8, 0> NullUint8EnumEncoding |
Null value for an optional Uint8EnumEncoding field.
| typedef UInt64 OrderID |
| typedef UInt64 OrderIDOptional |
| typedef UInt8 OrdTagID |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -8>> Percentage8 |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -8>> Percentage8Optional |
Optional percentage (8 decimal places).
FIX type: Percentage.
Definition at line 426 of file Composites.h.
| typedef UInt64 PosMaintRptID |
| typedef UInt64 PosMaintRptIDOptional |
| typedef UInt64 PosReqID |
| typedef UInt64 PosReqIDOptional |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -4>> Price |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -8>> Price8 |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -8>> Price8Optional |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -4>> PriceOffsetOptional |
Optional price offset (4 decimal places). Usually 3 places are enough, but FX requires 4.
FIX type: PriceOffset.
Definition at line 347 of file Composites.h.
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -4>> PriceOptional |
| typedef UInt64 Quantity |
| typedef UInt64 QuantityOptional |
| typedef UInt64 QuoteID |
| typedef UInt64 QuoteIDOptional |
| typedef UInt64 QuoteReqID |
| typedef UInt64 QuoteReqIDOptional |
| typedef FixedPointDecimal< Int64, IntegralConstant<Int8, -7>> RatioQty |
Ratio of quantity relative to the whole thing.
FIX type: float.
Definition at line 494 of file Composites.h.
| typedef UInt32 RejReason |
| typedef UInt32 RejReasonOptional |
| typedef MessageHeader::SchemaId SchemaId |
Definition at line 34 of file SchemaTraits.h.
| typedef MessageHeader::Version SchemaVersion |
SBE-encoded data version type.
Definition at line 30 of file SchemaTraits.h.
| typedef UInt64 SecurityID |
Security identification as defined by exchange. For the SecurityID list, see the Security List/Definition message in Market Data feed.
FIX type: Int.
| typedef UInt64 SecurityIDOptional |
Optional security identification as defined by exchange. For the SecurityID list, see the Security List/Definition message in Market Data feed.
FIX type: Int.
| typedef UInt64 SecurityReqRespID |
| typedef UInt32 SeqNum |
| typedef UInt32 SeqNumOptional |
| typedef UInt32 SessionID |
| typedef UInt32 SessionIDOptional |
| typedef UInt64 SessionVerID |
| typedef UInt64 SessionVerIDOptional |
| typedef Int32 StrategyIDOptional |
| typedef UInt8 TotNoRelatedSym |
| typedef UInt32 TradeID |
| typedef UInt32 TradeIDOptional |
| typedef UInt16 Uint16EnumEncoding |
| typedef UInt8 Uint8EnumEncoding |
|
constexpr |
Calculates the buffer size for a message with the given number of repeating group items.
Definition at line 49 of file MaxMessageSize.h.
| void checkSchema | ( | SchemaId | id, |
| SchemaVersion | version ) |
Checks the compatibility with the provided SBE Schema version.
Definition at line 1121 of file SbeMessage.h.
| void checkSchemaId | ( | SchemaId | id | ) |
Checks the compatibility with the provided SBE Schema ID.
Definition at line 1111 of file SbeMessage.h.
| void checkVersion | ( | SchemaVersion | since, |
| SchemaVersion | version ) |
Checks the compatibility with the provided SBE Schema version.
Definition at line 1099 of file SbeMessage.h.
| void checkVersion | ( | SchemaVersion | version | ) |
Checks the compatibility with the provided SBE Schema version.
Definition at line 1089 of file SbeMessage.h.
|
inlineconstexprnoexcept |
| EnableIf< details::IsDecimal< DecimalT >::value, DecimalT >::type convert | ( | const Decimal & | number | ) |
Convert the decimal in to a different one.
| std::exception | if the value cannot be converted |
Definition at line 137 of file Decimal.Operations.h.
| void convert | ( | FixedPointDecimal< MantissaType, ExponentType > & | res, |
| const Decimal & | number ) |
Definition at line 95 of file Decimal.Operations.h.
| void convert | ( | FloatingPointDecimal< MantissaType, ExponentType > & | res, |
| const Decimal & | number ) |
Definition at line 109 of file Decimal.Operations.h.
Deserializes a decimal number from the given text presentation.
|
inlinenoexcept |
Deserializes a decimal number from the given text presentation.
Definition at line 235 of file Decimal.Operations.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 460 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 517 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 575 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 404 of file Integral.h.
|
inline |
| bool fromStr | ( | Timestamp & | , |
| const Char * | , | ||
| size_t | , | ||
| TimestampFormat::Enum | = TimestampFormat::YYYYMMDDHHMMSSnsec ) |
De-serializes a timestamp from the given string.
|
inline |
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 488 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 546 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 604 of file Integral.h.
|
noexcept |
Deserializes a numeric value from its text representation.
|
inlinenoexcept |
Deserializes a numeric value from its text representation.
Definition at line 431 of file Integral.h.
|
constexpr |
Calculates the buffer size for a message with the given number of repeating group items.
Definition at line 70 of file MaxMessageSize.h.
|
constexpr |
Calculates the buffer size for a message with the given number of repeating group items.
Definition at line 60 of file MaxMessageSize.h.
|
noexcept |
|
inline |
Definition at line 58 of file Serialization.h.
|
inlinenoexcept |
|
inlinenoexcept |
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator!= | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 571 of file Decimal.Operations.h.
| bool operator!= | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 445 of file Decimal.Operations.h.
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator< | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 619 of file Decimal.Operations.h.
| bool operator< | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 464 of file Decimal.Operations.h.
|
inline |
|
inline |
|
inline |
Serializes into a stream.
Definition at line 2112 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 285 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 192 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 330 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 144 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 237 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 96 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1413 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2480 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2542 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 3249 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1598 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 3085 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2921 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 3126 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 370 of file Decimal.Operations.h.
|
inline |
Serializes into a stream.
Definition at line 2880 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 3044 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 246 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 308 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 370 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1350 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1536 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1288 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1226 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1474 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1412 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 386 of file Decimal.Operations.h.
|
inline |
Serializes into a stream.
Definition at line 291 of file Decimal.Operations.h.
|
inline |
Serializes into a stream.
Definition at line 2634 of file Serialization.h.
| std::ostream & operator<< | ( | std::ostream & | stream, |
| const HolderType< MsgType, MaxMessageSize, MessageInitializer > & | rhs ) |
Definition at line 401 of file MessageHolder.h.
|
inline |
Serializes into a stream.
Definition at line 3331 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 3167 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 3290 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2962 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 60 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 184 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 122 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1114 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1172 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 928 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 494 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 990 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1052 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2666 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2604 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 3208 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2716 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2244 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2368 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2426 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2306 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2675 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2008 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2070 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1834 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1892 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2132 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2190 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1946 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 2757 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 680 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 742 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 618 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1660 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1718 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 1772 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 556 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 866 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 804 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 432 of file MessageSerialization.h.
|
inline |
Serializes into a stream.
Definition at line 3003 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2798 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2839 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 3372 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2301 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1689 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2538 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2490 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2160 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1269 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2583 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1971 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1923 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1875 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1782 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 852 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1173 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 708 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 660 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 564 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 612 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1128 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2019 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1221 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2067 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1827 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1596 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 945 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 804 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2205 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 897 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 516 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 471 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 375 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 423 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1365 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1737 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2253 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 756 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2445 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1038 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 990 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1458 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1644 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1551 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1317 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1503 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 1083 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2349 of file Serialization.h.
|
inline |
Serializes into a stream.
Definition at line 2397 of file Serialization.h.
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator<= | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 636 of file Decimal.Operations.h.
| bool operator<= | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 508 of file Decimal.Operations.h.
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator== | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 553 of file Decimal.Operations.h.
| bool operator== | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 422 of file Decimal.Operations.h.
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator> | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 586 of file Decimal.Operations.h.
| bool operator> | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 487 of file Decimal.Operations.h.
| EnableIf< details::AreBothDecimals< Decimal1, Decimal2 >::value, bool >::type operator>= | ( | const Decimal1 & | left, |
| const Decimal2 & | right ) |
Compares two decimals.
Definition at line 603 of file Decimal.Operations.h.
| bool operator>= | ( | const FixedPointDecimal< Mantissa, Exponent > & | left, |
| const FixedPointDecimal< Mantissa, Exponent > & | right ) |
Compares two fixed-point decimals.
Definition at line 531 of file Decimal.Operations.h.
|
inline |
Casts a given binary message according to template/type information and processes the cast messages by a given processor.
Returned value indicates whether message type was successfully recognized and pushed to the processor for further processing. Unknown messages aren't processed and thus false result is returned.
Definition at line 55 of file Typification.h.
Quantize so its exponent is the same as that of provided value.
| std::exception | if the value cannot be quantized. |
Quantize so its exponent is the same as that of provided value.
| MantissaType quantizedMantissa | ( | const Decimal & | operand, |
| Int32 | exponent ) |
Quantize so its exponent is the same as that of provided value.
| std::exception | if the value cannot be quantized |
Definition at line 74 of file Decimal.Operations.h.
|
inlineconstexprnoexcept |
|
inlinenoexcept |
|
inline |
Serializes the object into FIX presentation.
Definition at line 2127 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 300 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 207 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 345 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 159 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 252 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 111 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1428 of file Serialization.h.
| void toFix | ( | std::string & | str, |
| const AllocationInstruction601 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const AllocationReport602 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const BusinessMessageReject206 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Establish4 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const EstablishAck5 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const EstablishReject6 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportCancel202 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportForward205 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportModify201 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportNew200 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportReject204 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const ExecutionReportTrade203 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Negotiate1 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const NegotiateReject3 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const NegotiateResponse2 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const NewOrderCross106 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const NewOrderSingle102 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const NotApplied8 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const OrderCancelReplaceRequest104 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const OrderCancelRequest105 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const OrderMassActionReport702 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const OrderMassActionRequest701 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const PositionMaintenanceCancelRequest501 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const PositionMaintenanceReport503 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const PositionMaintenanceRequest502 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Quote403 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const QuoteCancel404 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const QuoteRequest401 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const QuoteRequestReject405 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const QuoteStatusReport402 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Retransmission13 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const RetransmitReject14 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const RetransmitRequest12 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const SecurityDefinitionRequest300 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const SecurityDefinitionResponse301 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Sequence9 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const SimpleModifyOrder101 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const SimpleNewOrder100 & | obj ) |
Serializes the object into FIX presentation.
| void toFix | ( | std::string & | str, |
| const Terminate7 & | obj ) |
Serializes the object into FIX presentation.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2316 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1704 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2553 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2505 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2175 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1284 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2598 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1986 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1938 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1890 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1797 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 867 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1188 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 723 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 675 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 579 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 627 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1143 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2034 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1236 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2082 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1842 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1611 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 960 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 819 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2220 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 912 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 531 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 486 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 390 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 438 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1380 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1752 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2268 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 771 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2460 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1053 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1005 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1473 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1659 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1566 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1332 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1518 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 1098 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2364 of file Serialization.h.
|
inline |
Serializes the object into FIX presentation.
Definition at line 2412 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2101 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 273 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 180 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 319 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 132 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 226 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 85 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1401 of file Serialization.h.
|
inline |
|
inline |
Serializes into a string.
Definition at line 2464 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2526 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 3233 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1582 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 3069 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2905 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 3110 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2864 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 3028 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 230 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 292 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 354 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1334 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1520 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1272 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1210 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1458 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1396 of file MessageSerialization.h.
|
inline |
Serializes a fixed-point decimal into a string.
Definition at line 353 of file Decimal.Operations.h.
|
inline |
Serializes a floating-point decimal into a string.
Definition at line 335 of file Decimal.Operations.h.
|
inline |
Serializes into a string.
Definition at line 2618 of file Serialization.h.
|
inline |
Definition at line 388 of file MessageHolder.h.
|
inline |
Serializes into a string.
Definition at line 3315 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 3151 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 3274 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2946 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 44 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 168 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 106 of file MessageSerialization.h.
|
inline |
Definition at line 132 of file NetworkMessage.h.
|
inline |
Serializes into a string.
Definition at line 1098 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1159 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 912 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 478 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 974 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1036 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2650 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2588 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 3192 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2700 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2228 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2352 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2413 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2290 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2659 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1992 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2054 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1818 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1879 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2116 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2177 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1930 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2741 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 664 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 726 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 602 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1644 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1705 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 1756 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 540 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 850 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 788 of file MessageSerialization.h.
|
inline |
Definition at line 73 of file SimpleOpenFramingHeader.h.
|
inline |
|
inline |
Serializes into a string.
Definition at line 416 of file MessageSerialization.h.
|
inline |
Serializes into a string.
Definition at line 2987 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2782 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2823 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 3356 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2289 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1678 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2526 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2479 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2148 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1257 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2572 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1959 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1911 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1863 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1771 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 840 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1162 of file Serialization.h.
|
inline |
Serializes the given integer into a string.
Definition at line 164 of file Integral.h.
| size_t toStr | ( | Int16 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 206 of file Integral.h.
| size_t toStr | ( | Int32 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 248 of file Integral.h.
| size_t toStr | ( | Int64 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 122 of file Integral.h.
| size_t toStr | ( | Int8 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given constant into a string.
Definition at line 380 of file Integral.h.
|
inline |
Serializes into a string.
Definition at line 696 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 648 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 552 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 600 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1117 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2007 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1209 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2055 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1816 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1585 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 933 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 792 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2194 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 886 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 505 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 459 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 364 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 411 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1353 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1725 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2241 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 744 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2433 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1026 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 979 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1447 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1632 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1539 of file Serialization.h.
| void toStr | ( | std::string & | , |
| const NetworkMessage & | , | ||
| bool | skipHeader = false, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| ONIXS_B3_BOE_DATA_PACKING_END void toStr | ( | std::string & | , |
| const SimpleOpenFramingHeader & | ) |
Serializes SimpleOpenFramingHeader into a string.
| void toStr | ( | std::string & | , |
| Int16 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| Int32 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| Int64 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| Int8 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| TimeSpan | , | ||
| TimeSpanFormat::Enum | = TimeSpanFormat::SDHHMMSSnsec ) |
Appends the timespan.
| void toStr | ( | std::string & | , |
| Timestamp | , | ||
| TimestampFormat::Enum | = TimestampFormat::YYYYMMDDHHMMSSnsec ) |
Serializes the timestamp.
| void toStr | ( | std::string & | , |
| UInt16 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| UInt32 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| UInt64 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | , |
| UInt8 | ) |
Serializes the given integer into a string.
| void toStr | ( | std::string & | str, |
| AccountType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| AllocNoOrdersType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| AllocReportType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| AllocStatus::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| AllocTransType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| AllocType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| Boolean::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CancelOnDisconnectType::Enum | value ) |
Serializes into a string.
|
inline |
| void toStr | ( | std::string & | str, |
| const AllocationInstruction601 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const AllocationReport602 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const BidirectionalBusinessHeader & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const BusinessMessageReject206 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ClientAppEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const CredentialsEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const CustodianInfo & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const DeltaInMillis & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const DeskIDEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Establish4 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const EstablishAck5 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const EstablishReject6 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportCancel202 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportForward205 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportModify201 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportNew200 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportReject204 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const ExecutionReportTrade203 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
|
inline |
Serializes a fixed-point decimal into a string.
Definition at line 313 of file Decimal.Operations.h.
|
inline |
Serializes floating-point decimal into a string.
Definition at line 269 of file Decimal.Operations.h.
| void toStr | ( | std::string & | str, |
| const GroupSizeEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
|
inline |
Definition at line 148 of file MessageHolder.h.
| void toStr | ( | std::string & | str, |
| const ImpliedEventID & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const InboundBusinessHeader & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const InvestorID & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const MemoEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Negotiate1 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NegotiateReject3 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NegotiateResponse2 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NewOrderCross106 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NewOrderCross106::SidesEntry & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NewOrderSingle102 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const NotApplied8 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const OrderCancelReplaceRequest104 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const OrderCancelRequest105 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const OrderMassActionReport702 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const OrderMassActionRequest701 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const OutboundBusinessHeader & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Percentage8Optional & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const PositionMaintenanceCancelRequest501 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const PositionMaintenanceReport503 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const PositionMaintenanceReport503::PositionsEntry & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const PositionMaintenanceRequest502 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const PriceOffsetOptional & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Quote403 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteCancel404 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteRequest401 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteRequest401::SidesEntry & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteRequestReject405 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteRequestReject405::SidesEntry & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const QuoteStatusReport402 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const RatioQty & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Retransmission13 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const RetransmitReject14 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const RetransmitRequest12 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const SecurityDefinitionRequest300 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const SecurityDefinitionRequest300::LegsEntry & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const SecurityDefinitionResponse301 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const Sequence9 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const SimpleModifyOrder101 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const SimpleNewOrder100 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
|
inline |
|
inline |
| void toStr | ( | std::string & | str, |
| const Terminate7 & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const TextEncoding & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const UTCTimestampNanos & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| const UTCTimestampNanosOptional & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
|
inline |
Definition at line 64 of file Serialization.h.
| void toStr | ( | std::string & | str, |
| const Version & | obj, | ||
| bool | skipEmptyFields = false ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CrossedIndicator::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CrossOrdType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CrossPrioritization::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CrossType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| CxlRejResponseTo::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| EstablishRejectCode::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| EventIndicator | set ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| ExecRestatementReason::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| ExecRestatementReasonValidForMassCancel::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| ExecRestatementReasonValidForSingleCancel::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| ExecType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| ExecuteUnderlyingTrade::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| FlowType::Enum | value ) |
Serializes into a string.
|
inline |
Serializes the given constant into a string.
Definition at line 364 of file Integral.h.
| void toStr | ( | std::string & | str, |
| MassActionRejectReason::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| MassActionResponse::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| MassActionScope::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| MassActionType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| MessageType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| MultiLegReportingType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| NegotiationRejectCode::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| OrderCategory::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| OrdStatus::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| OrdType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| PosMaintAction::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| PosMaintStatus::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| PossResend::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| PosTransType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| PosType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| QuoteCancelType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| QuoteStatus::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| QuoteStatusResponseTo::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| RetransmitRejectCode::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| RoutingInstruction::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SecurityIDSource::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SecurityResponseType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SecurityTradingStatus::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SelfTradePreventionInstruction::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SettlType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| Side::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SimpleOrdType::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| SimpleTimeInForce::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| TerminationCode::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| TimeInForce::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| TimeUnit::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| TradingSessionID::Enum | value ) |
Serializes into a string.
| void toStr | ( | std::string & | str, |
| TradingSessionSubID::Enum | value ) |
Serializes into a string.
|
inline |
Serializes into a string.
Definition at line 1305 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 1492 of file Serialization.h.
|
inline |
|
inline |
|
inline |
Serializes into a string.
Definition at line 1072 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2337 of file Serialization.h.
|
inline |
Serializes into a string.
Definition at line 2385 of file Serialization.h.
|
inline |
Serializes the given integer into a string.
Definition at line 185 of file Integral.h.
| size_t toStr | ( | UInt16 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 227 of file Integral.h.
| size_t toStr | ( | UInt32 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 269 of file Integral.h.
| size_t toStr | ( | UInt64 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
|
inline |
Serializes the given integer into a string.
Definition at line 143 of file Integral.h.
| size_t toStr | ( | UInt8 | , |
| Char * | , | ||
| size_t | ) |
Serializes the integer into the given buffer.
| void toStrAsHHMMSS | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the HH:MM:SS pattern.
| void toStrAsHHMMSSmsec | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the HH:MM:SS.sss pattern.
| void toStrAsHHMMSSnsec | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the HH:MM:SS.sssssssss pattern.
| void toStrAsHHMMSSpsec | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the HH:MM:SS.ssssssssssss pattern.
| void toStrAsHHMMSSusec | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the HH:MM:SS.ssssss pattern.
| void toStrAsSDHHMMSSnsec | ( | std::string & | , |
| TimeSpan | ) |
Serializes the timespan according to the D.HH:MM:SS.sssssssss pattern.
| void toStrAsYYYYMMDD | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDD format.
| void toStrAsYYYYMMDDHHMMSS | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDDHHMMSS format.
| void toStrAsYYYYMMDDHHMMSSmsec | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDDHHMMSSmsec format.
| void toStrAsYYYYMMDDHHMMSSnsec | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDDHHMMSSnsec format.
| void toStrAsYYYYMMDDHHMMSSpsec | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDDHHMMSSpsec format.
| void toStrAsYYYYMMDDHHMMSSusec | ( | std::string & | , |
| Timestamp | ) |
Serializes the timestamp using the YYYYMMDDHHMMSSusec format.
|
inline |
|
inline |
Casts SBE-encoded message to a given type.
Definition at line 36 of file Typification.h.
|
constexpr |
Definition at line 28 of file SimpleOpenFramingHeader.h.
|
constexpr |
Default maximum number of repeating group items.
Definition at line 179 of file MessageHolder.h.
|
constexpr |
Maximum supported message size.
Definition at line 35 of file MaxMessageSize.h.