Make EditorVCSInterface proxy functions virtual in C++

Allows to implement VCS plugins via C++ modules without affecting
the existing script instance mechanism.

(cherry picked from commit 23c1b39570)
This commit is contained in:
Andrii Doroshenko (Xrayez) 2021-07-06 22:20:03 +03:00 committed by Rémi Verschelde
parent c696847f3d
commit 4fec6d4697
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -46,16 +46,16 @@ protected:
static void _bind_methods(); static void _bind_methods();
// Implemented by addons as end points for the proxy functions // Implemented by addons as end points for the proxy functions
bool _initialize(String p_project_root_path); virtual bool _initialize(String p_project_root_path);
bool _is_vcs_initialized(); virtual bool _is_vcs_initialized();
Dictionary _get_modified_files_data(); virtual Dictionary _get_modified_files_data();
void _stage_file(String p_file_path); virtual void _stage_file(String p_file_path);
void _unstage_file(String p_file_path); virtual void _unstage_file(String p_file_path);
void _commit(String p_msg); virtual void _commit(String p_msg);
Array _get_file_diff(String p_file_path); virtual Array _get_file_diff(String p_file_path);
bool _shut_down(); virtual bool _shut_down();
String _get_project_name(); virtual String _get_project_name();
String _get_vcs_name(); virtual String _get_vcs_name();
public: public:
static EditorVCSInterface *get_singleton(); static EditorVCSInterface *get_singleton();