12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #ifndef FIX41_SETTLEMENTINSTRUCTIONS_H
- #define FIX41_SETTLEMENTINSTRUCTIONS_H
- #include "Message.h"
- namespace FIX41
- {
- class SettlementInstructions : public Message
- {
- public:
- SettlementInstructions() : Message(MsgType()) {}
- SettlementInstructions(const FIX::Message& m) : Message(m) {}
- SettlementInstructions(const Message& m) : Message(m) {}
- SettlementInstructions(const SettlementInstructions& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("T"); }
- SettlementInstructions(
- const FIX::SettlInstID& aSettlInstID,
- const FIX::SettlInstTransType& aSettlInstTransType,
- const FIX::SettlInstMode& aSettlInstMode,
- const FIX::SettlInstSource& aSettlInstSource,
- const FIX::AllocAccount& aAllocAccount,
- const FIX::TransactTime& aTransactTime )
- : Message(MsgType())
- {
- set(aSettlInstID);
- set(aSettlInstTransType);
- set(aSettlInstMode);
- set(aSettlInstSource);
- set(aAllocAccount);
- set(aTransactTime);
- }
- FIELD_SET(*this, FIX::SettlInstID);
- FIELD_SET(*this, FIX::SettlInstTransType);
- FIELD_SET(*this, FIX::SettlInstMode);
- FIELD_SET(*this, FIX::SettlInstSource);
- FIELD_SET(*this, FIX::AllocAccount);
- FIELD_SET(*this, FIX::SettlLocation);
- FIELD_SET(*this, FIX::TradeDate);
- FIELD_SET(*this, FIX::AllocID);
- FIELD_SET(*this, FIX::LastMkt);
- FIELD_SET(*this, FIX::Side);
- FIELD_SET(*this, FIX::SecurityType);
- FIELD_SET(*this, FIX::EffectiveTime);
- FIELD_SET(*this, FIX::TransactTime);
- FIELD_SET(*this, FIX::ClientID);
- FIELD_SET(*this, FIX::ExecBroker);
- FIELD_SET(*this, FIX::StandInstDbType);
- FIELD_SET(*this, FIX::StandInstDbName);
- FIELD_SET(*this, FIX::StandInstDbID);
- FIELD_SET(*this, FIX::SettlDeliveryType);
- FIELD_SET(*this, FIX::SettlDepositoryCode);
- FIELD_SET(*this, FIX::SettlBrkrCode);
- FIELD_SET(*this, FIX::SettlInstCode);
- FIELD_SET(*this, FIX::SecuritySettlAgentName);
- FIELD_SET(*this, FIX::SecuritySettlAgentCode);
- FIELD_SET(*this, FIX::SecuritySettlAgentAcctNum);
- FIELD_SET(*this, FIX::SecuritySettlAgentAcctName);
- FIELD_SET(*this, FIX::SecuritySettlAgentContactName);
- FIELD_SET(*this, FIX::SecuritySettlAgentContactPhone);
- FIELD_SET(*this, FIX::CashSettlAgentName);
- FIELD_SET(*this, FIX::CashSettlAgentCode);
- FIELD_SET(*this, FIX::CashSettlAgentAcctNum);
- FIELD_SET(*this, FIX::CashSettlAgentAcctName);
- FIELD_SET(*this, FIX::CashSettlAgentContactName);
- FIELD_SET(*this, FIX::CashSettlAgentContactPhone);
- };
- }
- #endif
|