Logon.h 733 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef FIX40_LOGON_H
  2. #define FIX40_LOGON_H
  3. #include "Message.h"
  4. namespace FIX40
  5. {
  6. class Logon : public Message
  7. {
  8. public:
  9. Logon() : Message(MsgType()) {}
  10. Logon(const FIX::Message& m) : Message(m) {}
  11. Logon(const Message& m) : Message(m) {}
  12. Logon(const Logon& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("A"); }
  14. Logon(
  15. const FIX::EncryptMethod& aEncryptMethod,
  16. const FIX::HeartBtInt& aHeartBtInt )
  17. : Message(MsgType())
  18. {
  19. set(aEncryptMethod);
  20. set(aHeartBtInt);
  21. }
  22. FIELD_SET(*this, FIX::EncryptMethod);
  23. FIELD_SET(*this, FIX::HeartBtInt);
  24. FIELD_SET(*this, FIX::RawDataLength);
  25. FIELD_SET(*this, FIX::RawData);
  26. };
  27. }
  28. #endif