e5a3c41c20
We provide access to a thread whose event queue the sense API libs can use for device-independent event management.
15 lines
259 B
C++
15 lines
259 B
C++
#ifndef _SALMANOFF_H
|
|
#define _SALMANOFF_H
|
|
|
|
#include <memory>
|
|
#include <componentThread.h>
|
|
|
|
namespace smo {
|
|
|
|
void initializeSalmanoff(std::shared_ptr<ComponentThread>& componentThread);
|
|
void shutdownSalmanoff(void);
|
|
|
|
} // namespace smo
|
|
|
|
#endif // _SALMANOFF_H
|