Visioscan Set SDK Libraries 1.0.14
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
EthernetSettings.h
1#pragma once
2#include "BaseSettings.h"
3
4#include<string>;
5
6
7#ifdef STARFLEETTOOLBOX_EXPORTS
8#define ETHSETTENCAPS __declspec(dllexport)
9#else
10#define ETHSETTENCAPS __declspec(dllimport)
11#endif
12
13
14using namespace std;
15
19class ETHSETTENCAPS EthernetSettings :
20 public BaseSettings
21{
22public:
27
34 EthernetSettings(string pIp, int pTcpPort, int pUdpPort);
35
40
41
46 string GetIp();
47
52 int GetTcpPort();
53
58 int GetUdpPort();
59
64 void SetIp(string pIp);
65
70 void SetTcpPort(int pTcpPort);
71
76 void SetUdpPort(int pUdpPort);
77
78
79private:
80 string _ip;
81 int _tcpPort;
82 int _udpPort;
83};
84
The ETHERNET settings encapsulation for ETHERNET communication.
Definition EthernetSettings.h:21