OnixS C++ ICE Binary Order Entry Handler 1.1.1
API Documentation
Loading...
Searching...
No Matches
MaxOneGroupSizeEncoding Class Reference

Public Types

enum  
typedef UInt16 BlockLength
typedef UInt16 NumInGroup

Public Member Functions

std::string toString () const
BlockLength blockLength () const noexcept
void blockLength (BlockLength value) noexcept
NumInGroup numInGroup () const noexcept
void numInGroup (NumInGroup value) noexcept

Detailed Description

Definition at line 401 of file Composites.h.

Member Typedef Documentation

◆ BlockLength

Type alias for the BlockLength.

Definition at line 408 of file Composites.h.

◆ NumInGroup

typedef UInt16 NumInGroup

Type alias for the NumInGroup.

Definition at line 411 of file Composites.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum

Size of the composite.

Enumerator
Size 

Definition at line 405 of file Composites.h.

405{ Size = 4 };

Member Function Documentation

◆ blockLength() [1/2]

BlockLength blockLength ( ) const
inlinenoexcept
Returns
the blockLength field.

Definition at line 420 of file Composites.h.

421 {
422 return blockLength_;
423 }

◆ blockLength() [2/2]

void blockLength ( BlockLength value)
inlinenoexcept

Sets the blockLength field.

Definition at line 426 of file Composites.h.

427 {
428 blockLength_ = value;
429 }

◆ numInGroup() [1/2]

NumInGroup numInGroup ( ) const
inlinenoexcept
Returns
the numInGroup field.

Definition at line 433 of file Composites.h.

434 {
435 return numInGroup_;
436 }

◆ numInGroup() [2/2]

void numInGroup ( NumInGroup value)
inlinenoexcept

Sets the numInGroup field.

Definition at line 439 of file Composites.h.

440 {
441 numInGroup_ = value;
442 }

◆ toString()

std::string toString ( ) const
inline
Returns
a human-readable presentation.

Definition at line 1693 of file Serialization.h.

1694{
1695 return toStr(*this);
1696}
std::string toStr(Order::PriceOptional value)
Definition Order.cpp:34