RTAB-Map 0.23.10
Real-Time Appearance-Based Mapping
Loading...
Searching...
No Matches
UEventsSender.h
1/*
2 * UEventsSender.h
3 *
4 * Created on: 2013-10-14
5 * Author: Mathieu
6 */
7
8#ifndef UEVENTSSENDER_H_
9#define UEVENTSSENDER_H_
10
11#include "rtabmap/utilite/utilite_export.h" // DLL export/import defines
12
13class UEvent;
14
15class UTILITE_EXPORT UEventsSender
16{
17public:
19 virtual ~UEventsSender();
20
21protected:
22
27 void post(UEvent * event, bool async = true) const;
28};
29
30
31#endif /* UEVENTSSENDER_H_ */
void post(UEvent *event, bool async=true) const