12345678910111213141516171819202122232425 |
- #ifndef FIX43_LOGOUT_H
- #define FIX43_LOGOUT_H
- #include "Message.h"
- namespace FIX43
- {
- class Logout : public Message
- {
- public:
- Logout() : Message(MsgType()) {}
- Logout(const FIX::Message& m) : Message(m) {}
- Logout(const Message& m) : Message(m) {}
- Logout(const Logout& m) : Message(m) {}
- static FIX::MsgType MsgType() { return FIX::MsgType("5"); }
- FIELD_SET(*this, FIX::Text);
- FIELD_SET(*this, FIX::EncodedTextLen);
- FIELD_SET(*this, FIX::EncodedText);
- };
- }
- #endif
|