diff options
author | Leon Krause <lk@leonkrause.com> | 2017-11-16 01:33:48 +0100 |
---|---|---|
committer | Leon Krause <lk@leonkrause.com> | 2017-11-18 03:54:21 +0100 |
commit | 63b1a096eb17fd52cd46c36177e5158dce54a60a (patch) | |
tree | 3517410561103c29289379f3809f813e266b46b3 /platform/javascript/javascript_eval.h | |
parent | 6b34f10ab1dc92fa0addf57cb3cdcce5fd109d5b (diff) | |
download | redot-engine-63b1a096eb17fd52cd46c36177e5158dce54a60a.tar.gz |
Facilitate exposing platform-exclusive interfaces to all platforms
This makes the interfaces available, without implementation, in other
platforms and the editor, which facilitates documenting platform-exclusive
classes.
Platform-exclusive APIs must be set up in platform/<platform>/api/api.cpp.
Provide noop method-implementations where necessary.
Also setup and document the HTML5 platform's JavaScript singleton.
Diffstat (limited to 'platform/javascript/javascript_eval.h')
-rw-r--r-- | platform/javascript/javascript_eval.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/platform/javascript/javascript_eval.h b/platform/javascript/javascript_eval.h deleted file mode 100644 index ed7cf383da..0000000000 --- a/platform/javascript/javascript_eval.h +++ /dev/null @@ -1,55 +0,0 @@ -/*************************************************************************/ -/* javascript_eval.h */ -/*************************************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ -/*************************************************************************/ -/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ -/* Copyright (c) 2014-2017 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. */ -/*************************************************************************/ -#ifdef JAVASCRIPT_EVAL_ENABLED - -#ifndef JAVASCRIPT_EVAL_H -#define JAVASCRIPT_EVAL_H - -#include "object.h" - -class JavaScript : public Object { -private: - GDCLASS(JavaScript, Object); - - static JavaScript *singleton; - -protected: - static void _bind_methods(); - -public: - Variant eval(const String &p_code, bool p_use_global_exec_context = false); - - static JavaScript *get_singleton(); - JavaScript(); - ~JavaScript(); -}; - -#endif // JAVASCRIPT_EVAL_H -#endif // JAVASCRIPT_EVAL_ENABLED |