OnixS BME SENAF Handler C++ library  2.2.0
API documentation
PositionCancellation.h
Go to the documentation of this file.
1 /*
2  * Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3  *
4  * This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
5  * and international copyright treaties.
6  *
7  * Access to and use of the software is governed by the terms of the applicable ONIXS Software
8  * Services Agreement (the Agreement) and Customer end user license agreements granting
9  * a non-assignable, non-transferable and non-exclusive license to use the software
10  * for it's own data processing purposes under the terms defined in the Agreement.
11  *
12  * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13  * of this source code or associated reference material to any other location for further reproduction
14  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15  *
16  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17  * the terms of the Agreement is a violation of copyright law.
18  */
19 
20 #pragma once
21 
22 #include <OnixS/Senaf/MarketData/Export.h>
25 
26 #include <iosfwd>
27 #include <string>
28 #include <vector>
29 
30 namespace OnixS { namespace Senaf { namespace MarketData {
31 
32 /// Market Image Recovery.
33 struct ONIXS_BME_SENAF_EXPORT PositionCancellation
34 {
35  /// Message code.
36  enum { code = 1 };
37 
38  /// Default constructor.
40 
41  /// Message Number.
42  unsigned int messageNumber;
43 
44  /// Market.
45  unsigned char market;
46 
47  /// Publication Time.
49 
50  /// Instrument Type.
52 
53  /// Existence of more messages.
55 
56  /// Position.
57  struct Position
58  {
59  /// Constructor.
60  Position();
61 
62  /// Level.
63  unsigned char level;
64 
65  /// Position.
66  unsigned char position;
67 
68  /// Side.
70 
71  /// Returns string representation.
72  std::string toString() const;
73  };
74 
75  /// Alias for collection of Position.
76  typedef std::vector<Position> Positions;
77 
78  /// Reference.
79  struct Reference
80  {
81  /// Constructor.
82  Reference();
83 
84  /// Reference.
85  unsigned short reference;
86 
87  /// Collection of Positions.
88  Positions positions;
89 
90  /// Returns string representation.
91  std::string toString() const;
92  };
93 
94  /// Alias for collection of References.
95  typedef std::vector<Reference> References;
96 
97  /// Collection of References.
98  References references;
99 
100  /// Original Request Number.
101  unsigned int originalRequestNumber;
102 
103  /// Returns string representation.
104  std::string toString() const;
105 
106 private:
107  friend class MessageDeserializer;
108  PositionCancellation(const char* data, size_t dataSize);
109  void deserialize(const char* data, size_t dataSize);
110  void reset();
111 };
112 
113 /// Make it printable using C++ I/O streams.
114 ONIXS_BME_SENAF_EXPORT std::ostream& operator<<(std::ostream&, const PositionCancellation&);
115 
116 }}}
std::vector< Position > Positions
Alias for collection of Position.
std::vector< Reference > References
Alias for collection of References.
unsigned int originalRequestNumber
Original Request Number.
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.
References references
Collection of References.
InstrumentType::Enum instrumentType
Instrument Type.
bool existenceOfMoreMessages
Existence of more messages.