22 lines
434 B
C
22 lines
434 B
C
|
|
#ifndef CC_WEBRTC_H
|
||
|
|
#define CC_WEBRTC_H
|
||
|
|
#include "CCWCTool.h"
|
||
|
|
|
||
|
|
|
||
|
|
namespace CTL {
|
||
|
|
class WebRTC {
|
||
|
|
public:
|
||
|
|
WebRTC() = default;
|
||
|
|
~WebRTC();
|
||
|
|
//--------------------------------------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
//--------------------------------------------------------------------------------------------------------------
|
||
|
|
private:
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|