13 lines
254 B
C
13 lines
254 B
C
|
#ifndef __WEBRTCCLIENTPAGE_H__
|
||
|
#define __WEBRTCCLIENTPAGE_H__
|
||
|
|
||
|
#include <Wt/WTemplate.h>
|
||
|
|
||
|
class WebRTCClientPage : public Wt::WTemplate {
|
||
|
public:
|
||
|
WebRTCClientPage();
|
||
|
|
||
|
static std::string randomId(size_t length);
|
||
|
};
|
||
|
|
||
|
#endif // __WEBRTCCLIENTPAGE_H__
|