mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Merge pull request #108516 from KoBeWi/file_graveyard
Remove unnecessary cpp files after cleanup
This commit is contained in:
commit
c6fe923e33
25 changed files with 51 additions and 537 deletions
|
|
@ -38,10 +38,14 @@ class NetSocketWeb : public NetSocket {
|
|||
GDSOFTCLASS(NetSocketWeb, NetSocket);
|
||||
|
||||
protected:
|
||||
static NetSocket *_create_func();
|
||||
static NetSocket *_create_func() {
|
||||
return memnew(NetSocketWeb);
|
||||
}
|
||||
|
||||
public:
|
||||
static void make_default();
|
||||
static void make_default() {
|
||||
_create = _create_func;
|
||||
}
|
||||
|
||||
virtual Error open(Family p_family, Type p_sock_type, IP::Type &ip_type) override { return ERR_UNAVAILABLE; }
|
||||
virtual void close() override {}
|
||||
|
|
@ -66,6 +70,4 @@ public:
|
|||
virtual void set_reuse_address_enabled(bool p_enabled) override {}
|
||||
virtual Error join_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override { return ERR_UNAVAILABLE; }
|
||||
virtual Error leave_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override { return ERR_UNAVAILABLE; }
|
||||
|
||||
NetSocketWeb() {}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue