Values.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* -*- C++ -*- */
  2. /****************************************************************************
  3. ** Copyright (c) 2001-2014
  4. **
  5. ** This file is part of the QuickFIX FIX Engine
  6. **
  7. ** This file may be distributed under the terms of the quickfixengine.org
  8. ** license as defined by quickfixengine.org and appearing in the file
  9. ** LICENSE included in the packaging of this file.
  10. **
  11. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  12. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  13. **
  14. ** See http://www.quickfixengine.org/LICENSE for licensing information.
  15. **
  16. ** Contact ask@quickfixengine.org if any conditions of this licensing are
  17. ** not clear to you.
  18. **
  19. ****************************************************************************/
  20. #ifndef FIX_VALUES_BASE_H
  21. #define FIX_VALUES_BASE_H
  22. #include "FixValues.h"
  23. #include <string>
  24. namespace FIX
  25. {
  26. const char BeginString_FIXT11[] = "FIXT.1.1";
  27. const char BeginString_FIX50[] = "FIX.5.0";
  28. const char BeginString_FIX44[] = "FIX.4.4";
  29. const char BeginString_FIX43[] = "FIX.4.3";
  30. const char BeginString_FIX42[] = "FIX.4.2";
  31. const char BeginString_FIX41[] = "FIX.4.1";
  32. const char BeginString_FIX40[] = "FIX.4.0";
  33. const char SessionRejectReason_INVALID_TAG_NUMBER_TEXT[] = "Invalid tag number";
  34. const char SessionRejectReason_REQUIRED_TAG_MISSING_TEXT[] = "Required tag missing";
  35. const char SessionRejectReason_TAG_NOT_DEFINED_FOR_THIS_MESSAGE_TYPE_TEXT[] = "Tag not defined for this message type";
  36. const char SessionRejectReason_UNDEFINED_TAG_TEXT[] = "Undefined Tag";
  37. const char SessionRejectReason_TAG_SPECIFIED_WITHOUT_A_VALUE_TEXT[] = "Tag specified without a value";
  38. const char SessionRejectReason_VALUE_IS_INCORRECT_TEXT[] = "Value is incorrect (out of range) for this tag";
  39. const char SessionRejectReason_INCORRECT_DATA_FORMAT_FOR_VALUE_TEXT[] = "Incorrect data format for value";
  40. const char SessionRejectReason_DECRYPTION_PROBLEM_TEXT[] = "Decryption problem";
  41. const char SessionRejectReason_SIGNATURE_PROBLEM_TEXT[] = "Signature problem";
  42. const char SessionRejectReason_COMPID_PROBLEM_TEXT[] = "CompID problem";
  43. const char SessionRejectReason_SENDINGTIME_ACCURACY_PROBLEM_TEXT[] = "SendingTime accuracy problem";
  44. const char SessionRejectReason_INVALID_MSGTYPE_TEXT[] = "Invalid MsgType";
  45. const char SessionRejectReason_TAG_APPEARS_MORE_THAN_ONCE_TEXT[] = "Tag appears more than once";
  46. const char SessionRejectReason_TAG_SPECIFIED_OUT_OF_REQUIRED_ORDER_TEXT[] = "Tag specified out of required order";
  47. const char SessionRejectReason_INCORRECT_NUMINGROUP_COUNT_FOR_REPEATING_GROUP_TEXT[] = "Incorrect NumInGroup count for repeating group";
  48. const char BusinessRejectReason_OTHER_TEXT[] = "Other";
  49. const char BusinessRejectReason_UNKNOWN_ID_TEXT[] = "Unknown ID";
  50. const char BusinessRejectReason_UNKNOWN_SECURITY_TEXT[] = "Unknown Security";
  51. const char BusinessRejectReason_UNSUPPORTED_MESSAGE_TYPE_TEXT[] = "Unsupported Message Type";
  52. const char BusinessRejectReason_APPLICATION_NOT_AVAILABLE_TEXT[] = "Application Not Available";
  53. const char BusinessRejectReason_CONDITIONALLY_REQUIRED_FIELD_MISSING_TEXT[] = "Conditionally Required Field Missing";
  54. const char BusinessRejectReason_NOT_AUTHORIZED_TEXT[] = "Not Authorized";
  55. const char BusinessRejectReason_DELIVERTO_FIRM_NOT_AVAILABLE_AT_THIS_TIME_TEXT[] = "Deliver to firm not available at this time";
  56. }
  57. #endif //FIX_VALUES_BASE_H