OnixS BME SENAF Handler C++ library
2.2.1
API documentation
Home
Contents
Namespaces
Classes
Files
File List
include
OnixS
Senaf
MarketData
Messages
PositionModificationNotInvolved.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
5
* copyright law and international copyright treaties.
6
*
7
* Access to and use of the software is governed by the terms of the applicable
8
* ONIXS Software Services Agreement (the Agreement) and Customer end user
9
* license agreements granting a non-assignable, non-transferable and
10
* non-exclusive license to use the software for it's own data processing
11
* purposes under the terms defined in the Agreement.
12
*
13
* Except as otherwise granted within the terms of the Agreement, copying or
14
* reproduction of any part of this source code or associated reference material
15
* to any other location for further reproduction or redistribution, and any
16
* amendments to this copyright notice, are expressly prohibited.
17
*
18
* Any reproduction or redistribution for sale or hiring of the Software not in
19
* accordance with the terms of the Agreement is a violation of copyright law.
20
*/
21
22
#pragma once
23
24
#include <
OnixS/Senaf/MarketData/Enumerations.h
>
25
#include <OnixS/Senaf/MarketData/Export.h>
26
#include <
OnixS/Senaf/MarketData/Time.h
>
27
28
#include <iosfwd>
29
#include <string>
30
#include <vector>
31
32
namespace
OnixS
{
namespace
Senaf {
namespace
MarketData {
33
34
/// Position Modification. Not Involved.
35
struct
ONIXS_BME_SENAF_EXPORT
PositionModificationNotInvolved
36
{
37
/// Message code.
38
enum
39
{
40
code = 11
41
};
42
43
/// Default constructor.
44
PositionModificationNotInvolved
();
45
46
/// Market.
47
unsigned
char
market
;
48
49
/// Position.
50
unsigned
char
position
;
51
52
/// Level.
53
unsigned
char
level
;
54
55
/// Reference.
56
unsigned
short
reference
;
57
58
/// Message Number.
59
unsigned
int
messageNumber
;
60
61
/// Volume.
62
unsigned
int
volume
;
63
64
/// Side.
65
Side::Enum
side
;
66
67
/// Instrument Type.
68
InstrumentType::Enum
instrumentType
;
69
70
/// Publication Time.
71
TimeSpan
publicationTime
;
72
73
/// Returns string representation.
74
std::string toString()
const
;
75
76
private
:
77
friend
class
MessageDeserializer;
78
PositionModificationNotInvolved
(
const
char
* data,
size_t
dataSize);
79
void
deserialize(
const
char
* data,
size_t
dataSize);
80
void
reset();
81
};
82
83
ONIXS_BME_SENAF_EXPORT std::ostream&
84
operator<<
(std::ostream&,
const
PositionModificationNotInvolved
&);
85
86
}}}
// namespace OnixS::Senaf::MarketData
OnixS::Senaf::MarketData::PositionModificationNotInvolved::side
Side::Enum side
Side.
Definition:
PositionModificationNotInvolved.h:65
OnixS::Senaf::MarketData::InstrumentType::Enum
Enum
Instrument Types.
Definition:
Enumerations.h:132
Time.h
OnixS::Senaf::MarketData::TimeSpan
Definition:
Time.h:53
OnixS::Senaf::MarketData::PositionModificationNotInvolved
Position Modification. Not Involved.
Definition:
PositionModificationNotInvolved.h:35
OnixS::Senaf::MarketData::PositionModificationNotInvolved::reference
unsigned short reference
Reference.
Definition:
PositionModificationNotInvolved.h:56
OnixS::Senaf::MarketData::PositionModificationNotInvolved::position
unsigned char position
Position.
Definition:
PositionModificationNotInvolved.h:50
Enumerations.h
OnixS
Definition:
Containers.h:26
OnixS::Senaf::MarketData::PositionModificationNotInvolved::instrumentType
InstrumentType::Enum instrumentType
Instrument Type.
Definition:
PositionModificationNotInvolved.h:68
OnixS::Senaf::MarketData::Side::Enum
Enum
Side.
Definition:
Enumerations.h:86
OnixS::Senaf::MarketData::PositionModificationNotInvolved::publicationTime
TimeSpan publicationTime
Publication Time.
Definition:
PositionModificationNotInvolved.h:71
OnixS::Senaf::MarketData::operator<<
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.
OnixS::Senaf::MarketData::PositionModificationNotInvolved::market
unsigned char market
Market.
Definition:
PositionModificationNotInvolved.h:47
OnixS::Senaf::MarketData::PositionModificationNotInvolved::messageNumber
unsigned int messageNumber
Message Number.
Definition:
PositionModificationNotInvolved.h:59
OnixS::Senaf::MarketData::PositionModificationNotInvolved::volume
unsigned int volume
Volume.
Definition:
PositionModificationNotInvolved.h:62
OnixS::Senaf::MarketData::PositionModificationNotInvolved::level
unsigned char level
Level.
Definition:
PositionModificationNotInvolved.h:53