diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-08-14 04:41:15 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-03-08 15:11:34 +0100 |
commit | f2799fdbb296fa764384ba085fcb46e19248b09a (patch) | |
tree | 8ab05706e0c067d30b31679b5cfbd95a2fa49f2c /src/GodotSetSessionDescriptionObserver.cpp | |
parent | 34fd1f8caa847d75ff7d5c6e3b8619b494608629 (diff) | |
download | godot-webrtc-native-f2799fdbb296fa764384ba085fcb46e19248b09a.tar.gz godot-webrtc-native-f2799fdbb296fa764384ba085fcb46e19248b09a.tar.bz2 godot-webrtc-native-f2799fdbb296fa764384ba085fcb46e19248b09a.zip |
Fix name collision, scons file, final touches
Diffstat (limited to 'src/GodotSetSessionDescriptionObserver.cpp')
-rw-r--r-- | src/GodotSetSessionDescriptionObserver.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/GodotSetSessionDescriptionObserver.cpp b/src/GodotSetSessionDescriptionObserver.cpp index 93b9b8d..52be2af 100644 --- a/src/GodotSetSessionDescriptionObserver.cpp +++ b/src/GodotSetSessionDescriptionObserver.cpp @@ -1,11 +1,11 @@ -#include "WebRTCPeer.hpp" +#include "WebRTCLibPeer.hpp" using namespace godot_webrtc; -WebRTCPeer::GodotSSDO::GodotSSDO(WebRTCPeer *parent) { +WebRTCLibPeer::GodotSSDO::GodotSSDO(WebRTCLibPeer *parent) { this->parent = parent; } -void WebRTCPeer::GodotSSDO::OnSuccess(){}; +void WebRTCLibPeer::GodotSSDO::OnSuccess(){}; -void WebRTCPeer::GodotSSDO::OnFailure(const std::string &error){}; +void WebRTCLibPeer::GodotSSDO::OnFailure(const std::string &error){}; |