aboutsummaryrefslogtreecommitdiff
path: root/modules/openssl/register_types.cpp
diff options
context:
space:
mode:
authorFabio Alessandrelli2018-02-08 19:17:31 +0100
committerFabio Alessandrelli2018-02-14 01:26:34 +0100
commit6fcc8b7e1f415db55c6627630f622a37f6973714 (patch)
tree80c267a7a5b36b5537d9bb4038687f391ce159e5 /modules/openssl/register_types.cpp
parent308b03b377fc0001542ad4cfe876fca3c2f49a00 (diff)
downloadgodot-6fcc8b7e1f415db55c6627630f622a37f6973714.tar.gz
godot-6fcc8b7e1f415db55c6627630f622a37f6973714.tar.zst
godot-6fcc8b7e1f415db55c6627630f622a37f6973714.zip
Deleting OpenSSL module and library
Diffstat (limited to 'modules/openssl/register_types.cpp')
-rw-r--r--modules/openssl/register_types.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/modules/openssl/register_types.cpp b/modules/openssl/register_types.cpp
deleted file mode 100644
index 916acc260..000000000
--- a/modules/openssl/register_types.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/*************************************************************************/
-/* register_types.cpp */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
-/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
-/* */
-/* Permission is hereby granted, free of charge, to any person obtaining */
-/* a copy of this software and associated documentation files (the */
-/* "Software"), to deal in the Software without restriction, including */
-/* without limitation the rights to use, copy, modify, merge, publish, */
-/* distribute, sublicense, and/or sell copies of the Software, and to */
-/* permit persons to whom the Software is furnished to do so, subject to */
-/* the following conditions: */
-/* */
-/* The above copyright notice and this permission notice shall be */
-/* included in all copies or substantial portions of the Software. */
-/* */
-/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
-/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
-/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
-/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
-/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
-/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
-/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
-/*************************************************************************/
-
-#include "register_types.h"
-
-#include "stream_peer_openssl.h"
-
-void register_openssl_types() {
-
- ClassDB::register_class<StreamPeerOpenSSL>();
- StreamPeerOpenSSL::initialize_ssl();
-}
-
-void unregister_openssl_types() {
-
- StreamPeerOpenSSL::finalize_ssl();
-}