summaryrefslogtreecommitdiff
path: root/src/GodotSetSessionDescriptionObserver.cpp
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2019-03-08 15:20:53 +0100
committerGitHub <noreply@github.com>2019-03-08 15:20:53 +0100
commit31821b094b1810b829fbb0fa8d217a9692c8816a (patch)
tree8ab05706e0c067d30b31679b5cfbd95a2fa49f2c /src/GodotSetSessionDescriptionObserver.cpp
parenta44a5af115871b5be4dcfb05a421046a25ba5d73 (diff)
parentf2799fdbb296fa764384ba085fcb46e19248b09a (diff)
downloadgodot-webrtc-native-31821b094b1810b829fbb0fa8d217a9692c8816a.tar.gz
godot-webrtc-native-31821b094b1810b829fbb0fa8d217a9692c8816a.tar.bz2
godot-webrtc-native-31821b094b1810b829fbb0fa8d217a9692c8816a.zip
Merge pull request #1 from godotengine/bmakin_import
Import GSoC 2018 work
Diffstat (limited to 'src/GodotSetSessionDescriptionObserver.cpp')
-rw-r--r--src/GodotSetSessionDescriptionObserver.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/GodotSetSessionDescriptionObserver.cpp b/src/GodotSetSessionDescriptionObserver.cpp
new file mode 100644
index 0000000..52be2af
--- /dev/null
+++ b/src/GodotSetSessionDescriptionObserver.cpp
@@ -0,0 +1,11 @@
+#include "WebRTCLibPeer.hpp"
+
+using namespace godot_webrtc;
+
+WebRTCLibPeer::GodotSSDO::GodotSSDO(WebRTCLibPeer *parent) {
+ this->parent = parent;
+}
+
+void WebRTCLibPeer::GodotSSDO::OnSuccess(){};
+
+void WebRTCLibPeer::GodotSSDO::OnFailure(const std::string &error){};