Visioscan Set SDK Libraries 1.0.28
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
WCommunicationErrorCode.h
1#ifndef W_COMMERRORCODE_H
2#define W_COMMERRORCODE_H
3#include "WUtilities.h"
4namespace WUtils {
5 public ref class WCommunicationErrorCode
6 {
7 public:
10
11 property int ErrorCode
12 {
13 int get() { return _errorCode; }
14 void set(int value) { _errorCode = value; }
15 }
16
17 property String^ ErrorMeaning
18 {
19 String^ get() { return _errorMeaning; }
20 void set(String^ value) {
21 _errorMeaning = value;
22 }
23 }
24 private:
25 int _errorCode;
27 };
28}
29#endif
Definition WAvailableResolution.h:7
Definition WCommunicationErrorCode.h:6
WCommunicationErrorCode()
Definition WCommunicationErrorCode.h:8
String _errorMeaning
Definition WCommunicationErrorCode.h:26
property int ErrorCode
Definition WCommunicationErrorCode.h:12