OnixS BME SENAF Handler C++ library  2.2.0
API documentation
PositionModificationInvolved.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 /// Position Modification. Involved.
33 struct ONIXS_BME_SENAF_EXPORT PositionModificationInvolved
34 {
35  /// Message code.
36  enum { code = 10 };
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  /// Investment Decision.
51  unsigned int investmentDecision;
52 
53  /// Execution.
54  unsigned int execution;
55 
56  /// Liquidity Provision Activity.
58 
59  /// Instrument Type.
61 
62  /// Reference.
63  unsigned short reference;
64 
65  /// Level.
66  unsigned char level;
67 
68  /// Side.
70 
71  /// Position.
72  unsigned char position;
73 
74  /// Volume.
75  unsigned int volume;
76 
77  /// Position Number.
78  unsigned int positionNumber;
79 
80  /// Member.
81  unsigned char member;
82 
83  /// Broker.
84  unsigned char broker;
85 
86  /// User.
87  unsigned char user;
88 
89  /// Label.
90  unsigned int label;
91 
92  /// Original Request Number.
93  unsigned int originalRequestNumber;
94 
95  /// Returns string representation.
96  std::string toString () const;
97 
98 private:
99  friend class MessageDeserializer;
100  PositionModificationInvolved(const char* data, size_t dataSize);
101  void deserialize(const char* data, size_t dataSize);
102  void reset();
103 };
104 
105 ONIXS_BME_SENAF_EXPORT std::ostream& operator<<(std::ostream&, const PositionModificationInvolved&);
106 
107 }}}
unsigned char liquidityProvisionActivity
Liquidity Provision Activity.
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.