// // Created by Théo Monnom on 01/09/2022. // #ifndef CLIENT_SDK_NATIVE_DATA_CHANNEL_H #define CLIENT_SDK_NATIVE_DATA_CHANNEL_H #include #include "api/data_channel_interface.h" namespace livekit { class DataChannel { public: explicit DataChannel(rtc::scoped_refptr data_channel); private: rtc::scoped_refptr data_channel_; }; static std::unique_ptr _unique_data_channel(){ return nullptr; // Ignore } } // livekit #endif //CLIENT_SDK_NATIVE_DATA_CHANNEL_H