Visioscan Set SDK Libraries 1.0.14
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
FieldName.h
1#pragma once
2#include <string>
3#ifdef AGVSENSOR_EXPORTS
4#define FIELDNAME __declspec(dllexport)
5#else
6#define FIELDNAME __declspec(dllimport)
7#endif
8using namespace std;
9class FIELDNAME FieldName
10{
11public:
16 int GetFieldNumber();
17
22 void SetFieldNumber(int fieldNumber);
23
28 string GetMainName();
29
34 void SetMainName(string fieldName);
35
40 string GetProtectionZoneName();
41
46 void SetProtectionZoneName(string protectionZoneName);
47
52 string GetWarning1ZoneName();
53
58 void SetWarning1ZoneName(string warning1ZoneName);
59
64 string GetWarning2ZoneName();
65
70 void SetWarning2ZoneName(string warning2ZoneName);
71
72private:
73 int _fieldNumber;
74 string _fieldsetName;
75 string _protectionZoneName;
76 string _warning1ZoneName;
77 string _warning2ZoneName;
78};
79
Definition FieldName.h:10