summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2018-08-12 06:53:24 +0200
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2018-08-12 06:53:24 +0200
commitfaac4c97e5e3bf897aceaaf94a2e27d94910cd31 (patch)
tree73e73901913a1300402fd32d391e2d74f20d9871 /src/net
parent501e09d6d897dfc390c3b1690a30db5de4dad193 (diff)
downloadfork-godot-webrtc-native-faac4c97e5e3bf897aceaaf94a2e27d94910cd31.tar.gz
fork-godot-webrtc-native-faac4c97e5e3bf897aceaaf94a2e27d94910cd31.tar.bz2
fork-godot-webrtc-native-faac4c97e5e3bf897aceaaf94a2e27d94910cd31.zip
Implement missing methods
Diffstat (limited to 'src/net')
-rw-r--r--src/net/WebRTCPeerNative.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/WebRTCPeerNative.hpp b/src/net/WebRTCPeerNative.hpp
index 30b4536..6339a2f 100644
--- a/src/net/WebRTCPeerNative.hpp
+++ b/src/net/WebRTCPeerNative.hpp
@@ -43,10 +43,10 @@ public:
void _init();
- virtual void set_write_mode(godot_int mode);
- virtual godot_int get_write_mode() const;
- virtual bool was_string_packet() const;
- virtual godot_int get_connection_state() const;
+ virtual void set_write_mode(godot_int mode) = 0;
+ virtual godot_int get_write_mode() const = 0;
+ virtual bool was_string_packet() const = 0;
+ virtual godot_int get_connection_state() const = 0;
virtual godot_error create_offer() = 0;
virtual godot_error set_remote_description(const char * type, const char * sdp) = 0;