1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef FIX50SP1_LISTSTATUS_H
- #define FIX50SP1_LISTSTATUS_H
- #include "Message.h"
- namespace FIX50SP1
- {
- class ListStatus : public Message
- {
- public:
- ListStatus() : Message(MsgType()) {}
- ListStatus(const FIX::Message& m) : Message(m) {}
- ListStatus(const Message& m) : Message(m) {}
- ListStatus(const ListStatus& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("N"); }
- ListStatus(
- const FIX::ListID& aListID,
- const FIX::ListStatusType& aListStatusType,
- const FIX::NoRpts& aNoRpts,
- const FIX::ListOrderStatus& aListOrderStatus,
- const FIX::RptSeq& aRptSeq,
- const FIX::TotNoOrders& aTotNoOrders )
- : Message(MsgType())
- {
- set(aListID);
- set(aListStatusType);
- set(aNoRpts);
- set(aListOrderStatus);
- set(aRptSeq);
- set(aTotNoOrders);
- }
- FIELD_SET(*this, FIX::ListID);
- FIELD_SET(*this, FIX::ListStatusType);
- FIELD_SET(*this, FIX::NoRpts);
- FIELD_SET(*this, FIX::ListOrderStatus);
- FIELD_SET(*this, FIX::ContingencyType);
- FIELD_SET(*this, FIX::ListRejectReason);
- FIELD_SET(*this, FIX::RptSeq);
- FIELD_SET(*this, FIX::ListStatusText);
- FIELD_SET(*this, FIX::EncodedListStatusTextLen);
- FIELD_SET(*this, FIX::EncodedListStatusText);
- FIELD_SET(*this, FIX::TransactTime);
- FIELD_SET(*this, FIX::TotNoOrders);
- FIELD_SET(*this, FIX::LastFragment);
- FIELD_SET(*this, FIX::NoOrders);
- class NoOrders: public FIX::Group
- {
- public:
- NoOrders() : FIX::Group(73,11,FIX::message_order(11,37,526,14,39,636,151,84,6,103,58,354,355,0)) {}
- FIELD_SET(*this, FIX::ClOrdID);
- FIELD_SET(*this, FIX::OrderID);
- FIELD_SET(*this, FIX::SecondaryClOrdID);
- FIELD_SET(*this, FIX::CumQty);
- FIELD_SET(*this, FIX::OrdStatus);
- FIELD_SET(*this, FIX::WorkingIndicator);
- FIELD_SET(*this, FIX::LeavesQty);
- FIELD_SET(*this, FIX::CxlQty);
- FIELD_SET(*this, FIX::AvgPx);
- FIELD_SET(*this, FIX::OrdRejReason);
- FIELD_SET(*this, FIX::Text);
- FIELD_SET(*this, FIX::EncodedTextLen);
- FIELD_SET(*this, FIX::EncodedText);
- };
- };
- }
- #endif
|