12345678910111213141516171819202122232425262728293031 |
- #ifndef FIX40_REJECT_H
- #define FIX40_REJECT_H
- #include "Message.h"
- namespace FIX40
- {
- class Reject : public Message
- {
- public:
- Reject() : Message(MsgType()) {}
- Reject(const FIX::Message& m) : Message(m) {}
- Reject(const Message& m) : Message(m) {}
- Reject(const Reject& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("3"); }
- Reject(
- const FIX::RefSeqNum& aRefSeqNum )
- : Message(MsgType())
- {
- set(aRefSeqNum);
- }
- FIELD_SET(*this, FIX::RefSeqNum);
- FIELD_SET(*this, FIX::Text);
- };
- }
- #endif
|