OnixS BME SENAF Handler C++ library  2.2.1
API documentation
IPAddress.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/Export.h>
25 
26 #include <set>
27 #include <string>
28 #include <vector>
29 
30 namespace OnixS { namespace Senaf { namespace MarketData {
31 
32 /// Represents IP address.
33 struct ONIXS_BME_SENAF_EXPORT IPAddress
34 {
35  enum
36  {
37  ADDR_SIZE = 4
38  };
39 
40  /// IPv4 address.
41  unsigned char addr[ADDR_SIZE];
42 
43  /// Default constructor.
44  IPAddress();
45 
46  /// Constructor.
47  ///
48  /// \param addr 4 bytes of the IPv4 address.
49  explicit IPAddress(unsigned char addr[ADDR_SIZE]);
50 
51  /// Copy constructor.
52  ///
53  /// \param other IP address to be copied.
54  IPAddress(const IPAddress& other);
55 
56  /// Assign operator.
57  IPAddress& operator=(const IPAddress& other);
58 
59  /// Returns string representation.
60  std::string toString() const;
61 
62  /// Parse IP address from string.
63  ///
64  /// \return IP address object.
65  /// \throw Error object.
66  static IPAddress parse(const std::string& str);
67 };
68 
69 }}} // namespace OnixS::Senaf::MarketData
Represents IP address.
Definition: IPAddress.h:33