PassengerStatistics/Main/RtspServer.h

18 lines
289 B
C
Raw Permalink Normal View History

2024-03-13 18:01:36 +08:00
#ifndef __RTSPSERVER_H__
#define __RTSPSERVER_H__
#include <string>
class RtspServerPrivate;
class RtspServer {
public:
RtspServer();
~RtspServer();
void push(const uint8_t *data, uint32_t size);
private:
RtspServerPrivate *m_d = nullptr;
};
#endif // __RTSPSERVER_H__