17 lines
270 B
C
17 lines
270 B
C
|
#ifndef __MEDIASERVER_H__
|
||
|
#define __MEDIASERVER_H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
class MediaServerPrivate;
|
||
|
|
||
|
class MediaServer {
|
||
|
public:
|
||
|
MediaServer(uint16_t port, bool ssl);
|
||
|
~MediaServer();
|
||
|
|
||
|
private:
|
||
|
MediaServerPrivate *m_d = nullptr;
|
||
|
};
|
||
|
|
||
|
#endif // __MEDIASERVER_H__
|