123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef FIX40_EMAIL_H
- #define FIX40_EMAIL_H
- #include "Message.h"
- namespace FIX40
- {
- class Email : public Message
- {
- public:
- Email() : Message(MsgType()) {}
- Email(const FIX::Message& m) : Message(m) {}
- Email(const Message& m) : Message(m) {}
- Email(const Email& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("C"); }
- Email(
- const FIX::EmailType& aEmailType,
- const FIX::LinesOfText& aLinesOfText,
- const FIX::Text& aText )
- : Message(MsgType())
- {
- set(aEmailType);
- set(aLinesOfText);
- set(aText);
- }
- FIELD_SET(*this, FIX::EmailType);
- FIELD_SET(*this, FIX::OrigTime);
- FIELD_SET(*this, FIX::RelatdSym);
- FIELD_SET(*this, FIX::OrderID);
- FIELD_SET(*this, FIX::ClOrdID);
- FIELD_SET(*this, FIX::LinesOfText);
- FIELD_SET(*this, FIX::Text);
- FIELD_SET(*this, FIX::RawDataLength);
- FIELD_SET(*this, FIX::RawData);
- };
- }
- #endif
|