Visioscan Set SDK Libraries 1.0.14
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
RawDataError.h
1#pragma once
2
3#ifdef RAWDATASENSOR_EXPORTS
4#define ANGLERANGE __declspec(dllexport)
5#else
6#define ANGLERANGE __declspec(dllimport)
7#endif
8
9
10
14class ANGLERANGE RawDataError
15{
16public:
21
27 RawDataError(int errorDate, int errorCode);
28
33 int GetErrorCode();
34
39 void SetErrorCode(int pErrorCode);
40
45 int GetErrorDate();
46
51 void SetErrorDate(int pErrorDate);
52
53private:
54 int _errorCode = 0;
55 int _errorDate = 0;
56
57
58};
59
Helper to encapsulate the the raw data error.
Definition RawDataError.h:15