TradingSessionStatus.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef FIX42_TRADINGSESSIONSTATUS_H
  2. #define FIX42_TRADINGSESSIONSTATUS_H
  3. #include "Message.h"
  4. namespace FIX42
  5. {
  6. class TradingSessionStatus : public Message
  7. {
  8. public:
  9. TradingSessionStatus() : Message(MsgType()) {}
  10. TradingSessionStatus(const FIX::Message& m) : Message(m) {}
  11. TradingSessionStatus(const Message& m) : Message(m) {}
  12. TradingSessionStatus(const TradingSessionStatus& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("h"); }
  14. TradingSessionStatus(
  15. const FIX::TradingSessionID& aTradingSessionID,
  16. const FIX::TradSesStatus& aTradSesStatus )
  17. : Message(MsgType())
  18. {
  19. set(aTradingSessionID);
  20. set(aTradSesStatus);
  21. }
  22. FIELD_SET(*this, FIX::TradSesReqID);
  23. FIELD_SET(*this, FIX::TradingSessionID);
  24. FIELD_SET(*this, FIX::TradSesMethod);
  25. FIELD_SET(*this, FIX::TradSesMode);
  26. FIELD_SET(*this, FIX::UnsolicitedIndicator);
  27. FIELD_SET(*this, FIX::TradSesStatus);
  28. FIELD_SET(*this, FIX::TradSesStartTime);
  29. FIELD_SET(*this, FIX::TradSesOpenTime);
  30. FIELD_SET(*this, FIX::TradSesPreCloseTime);
  31. FIELD_SET(*this, FIX::TradSesCloseTime);
  32. FIELD_SET(*this, FIX::TradSesEndTime);
  33. FIELD_SET(*this, FIX::TotalVolumeTraded);
  34. FIELD_SET(*this, FIX::Text);
  35. FIELD_SET(*this, FIX::EncodedTextLen);
  36. FIELD_SET(*this, FIX::EncodedText);
  37. };
  38. }
  39. #endif