Visioscan Set SDK Libraries 1.0.14
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
SensorLeds.h
1#pragma once
2#ifdef RAWDATASENSOR_EXPORTS
3#define SENSLED __declspec(dllexport)
4#else
5#define SENSLED __declspec(dllimport)
6#endif
10class SENSLED SensorLeds
11{
12
13public:
17 SensorLeds();
18
24 SensorLeds(bool pStatusLed, bool pLogoLed);
25
30 bool GetStatusLed();
31
36 void SetStatusLed(bool pStatusLed);
37
42 bool GetLogoLed();
43
48 void SetLogoLed(bool pLogoLed);
49
50private:
51 bool _statusLed = false;
52 bool _logoLed = false;
53};
54
Helper to encapsulate the sensor leds state.
Definition SensorLeds.h:11