IridiumConfig.h
Go to the documentation of this file.
1 // Copyright (c) 2020 Digital Barriers
4 
18 #pragma once
19 
20 #include "EdgeVisSDK.h"
21 #include "Pimpl.h"
22 
23 #include <string>
24 #include <stdint.h>
25 #include <vector>
26 
27 
28 namespace EdgeVisSDKCore
29 {
30  class IridiumConfigImpl;
31 
32  class IridiumConfig : public EdgeVisSDKPimpl<IridiumConfigImpl>
33  {
34  public:
35  DB_EDGEVIS_SDK IridiumConfig();
36  EdgeVisSDKPimplWeakConstructor(IridiumConfig);
37 
38  DB_EDGEVIS_SDK virtual ~IridiumConfig();
39 
45  DB_EDGEVIS_SDK bool Enabled() const;
46 
53  DB_EDGEVIS_SDK std::wstring GetPort() const;
54 
60  DB_EDGEVIS_SDK bool BackChannelEnabled() const;
61 
67  DB_EDGEVIS_SDK int32_t Address() const;
68 
74  DB_EDGEVIS_SDK int32_t CheckinPeriod() const;
75 
81  DB_EDGEVIS_SDK int64_t LastCheckinTime() const;
82  };
83 }
DB_EDGEVIS_SDK bool Enabled() const
Get the enable state of the Iridium link.
DB_EDGEVIS_SDK int32_t Address() const
Get the address for the Iridium link.
DB_EDGEVIS_SDK bool BackChannelEnabled() const
Get the enable state of the Iridium link backchannel.
Defines the Iridium configuration in use for an encoder.
Definition: IridiumConfig.h:32
DB_EDGEVIS_SDK int32_t CheckinPeriod() const
Get the check-in period for the Iridium link.
DB_EDGEVIS_SDK std::wstring GetPort() const
Get the port used for the Iridium link.
DB_EDGEVIS_SDK int64_t LastCheckinTime() const
Get the last check-in time for the Iridium link.
Definition: AreaOfInterestConfig.h:32