ItalaApi  1.3.3
DeviceEventHandler.h
1 
2 /***********************************************************************************
3  *
4  * ItalaApi - Copyright (C) 2022 Opto Engineering
5  *
6  * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES,
7  * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
8  * FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT
9  * HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY SUFFERED BY LICENSE AS
10  * A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
11  *
12  ***********************************************************************************/
13 
14 #ifndef ITALA_API_DEVICEEVENTHANDLER_H
15 #define ITALA_API_DEVICEEVENTHANDLER_H
16 
17 #include <cstdint>
18 
19 namespace Itala {
20 
27  virtual ~DeviceEventHandler() {}
28 
35  virtual void OnDeviceEvent(uint64_t eventId){};
36 };
37 } // namespace Itala
38 
39 #endif
virtual void OnDeviceEvent(uint64_t eventId)
Definition: DeviceEventHandler.h:35
Definition: DefectivePixel.h:23
Definition: DeviceEventHandler.h:26