ServerAddresses.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
32 #pragma once
33 
34 #include "EdgeVisSDK.h"
35 #include "Pimpl.h"
36 #include <string>
37 #include <vector>
38 
39 namespace EV
40 {
41  class ServerAddresses;
42 }
43 
44 namespace EdgeVisSDKCore
45 {
46  class ServerAddressesImpl;
47 
48  class ServerAddresses : public EdgeVisSDKPimpl<EV::ServerAddresses>
49  {
50  public:
51  static const int32_t DEF_NONSECURE_PORT = 9300;
52  static const int32_t DEF_SECURE_PORT = 9301;
53 
54  DB_EDGEVIS_SDK ServerAddresses();
55 
56  EdgeVisSDKPimplWeakConstructor(ServerAddresses);
57 
68  DB_EDGEVIS_SDK ServerAddresses(const std::wstring & address, int32_t port, bool secure);
69 
77  DB_EDGEVIS_SDK ServerAddresses(const std::wstring & address, bool secure);
78 
85  DB_EDGEVIS_SDK ServerAddresses(const std::wstring & addresses);
86 
87  DB_EDGEVIS_SDK ~ServerAddresses();
88 
95  DB_EDGEVIS_SDK std::wstring ToString() const;
96 
97  DB_EDGEVIS_SDK bool IsValid() const;
98 
99  static DB_EDGEVIS_SDK int32_t GetDefaultPort(bool secure);
100  };
101 }
Definition: OnvifEvent.h:27
This stores server addresses that the SDK should use to connect to.
Definition: ServerAddresses.h:48
Definition: AreaOfInterestConfig.h:32