Logout.h 507 B

12345678910111213141516171819202122232425
  1. #ifndef FIX43_LOGOUT_H
  2. #define FIX43_LOGOUT_H
  3. #include "Message.h"
  4. namespace FIX43
  5. {
  6. class Logout : public Message
  7. {
  8. public:
  9. Logout() : Message(MsgType()) {}
  10. Logout(const FIX::Message& m) : Message(m) {}
  11. Logout(const Message& m) : Message(m) {}
  12. Logout(const Logout& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("5"); }
  14. FIELD_SET(*this, FIX::Text);
  15. FIELD_SET(*this, FIX::EncodedTextLen);
  16. FIELD_SET(*this, FIX::EncodedText);
  17. };
  18. }
  19. #endif