1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef FIX40_QUOTEREQUEST_H
- #define FIX40_QUOTEREQUEST_H
- #include "Message.h"
- namespace FIX40
- {
- class QuoteRequest : public Message
- {
- public:
- QuoteRequest() : Message(MsgType()) {}
- QuoteRequest(const FIX::Message& m) : Message(m) {}
- QuoteRequest(const Message& m) : Message(m) {}
- QuoteRequest(const QuoteRequest& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("R"); }
- QuoteRequest(
- const FIX::QuoteReqID& aQuoteReqID,
- const FIX::Symbol& aSymbol )
- : Message(MsgType())
- {
- set(aQuoteReqID);
- set(aSymbol);
- }
- FIELD_SET(*this, FIX::QuoteReqID);
- FIELD_SET(*this, FIX::Symbol);
- FIELD_SET(*this, FIX::SymbolSfx);
- FIELD_SET(*this, FIX::SecurityID);
- FIELD_SET(*this, FIX::IDSource);
- FIELD_SET(*this, FIX::Issuer);
- FIELD_SET(*this, FIX::SecurityDesc);
- FIELD_SET(*this, FIX::PrevClosePx);
- FIELD_SET(*this, FIX::Side);
- FIELD_SET(*this, FIX::OrderQty);
- };
- }
- #endif
|