LeiaSR SDK 720218b2 v1.32.7.6322 2025-02-13T14:55:38Z
Stable
videolistener.h
Go to the documentation of this file.
1
5#pragma once
6
7#include "videoframe.h"
8
9#ifdef WIN32
10# ifdef COMPILING_DLL_SimulatedRealityCameras
11# define DIMENCOSR_API __declspec(dllexport)
12# else
13# define DIMENCOSR_API __declspec(dllimport)
14# endif
15#else
16# define DIMENCOSR_API
17#endif
18
19namespace SR {
20
27public:
36 virtual void accept(const VideoFrame& frame) = 0;
37};
38
39}
40
41#undef DIMENCOSR_API
Class containing an image recorded by a Camera.
Definition: videoframe.h:45
Interface for listening to SR_videoFrame updates.
Definition: videolistener.h:26
virtual void accept(const VideoFrame &frame)=0
Accept an SR_videoFrame frame.
Namespace containing all C++ Simulated Reality classes.
Definition: srconfiguration.h:20
#define DIMENCOSR_API
Definition: videolistener.h:16