Visioscan Set SDK Libraries 1.3.5
Visioscan Set SDK Help documentation file for C++ and C++/CLI
 
Loading...
Searching...
No Matches
AgvSensorLeds.h
1#pragma once
2#include "..\RawDataSensor\SensorLeds.h"
3#ifdef AGVSENSOR_EXPORTS
4#define AGV_LED __declspec(dllexport)
5#else
6#define AGV_LED __declspec(dllimport)
7#endif
8using namespace std;
9class AGV_LED AgvSensorLeds :
10 public SensorLeds
11{
12public:
17 bool GetContaminationLed();
18
23 void SetContaminationLed(bool pContaLed);
24private:
25 bool _contaminationLed = false;
26};
27
Definition AgvSensorLeds.h:11
Helper to encapsulate the sensor leds state.
Definition SensorLeds.h:11