diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-08-23 19:10:32 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-08-23 19:11:11 -0300 |
commit | 3d1c03187132677800b7f6bc609eeef8fe51f315 (patch) | |
tree | d92a3bf3730e4a443858ce9dd96ee4268693ee7a /editor/doc/doc_data.h | |
parent | 21d53f29f392f4a33095de75c478da345a362555 (diff) |
Changed MethodBind API to request information from methods. It's much claner now.
Also changed PropertyInfo to include informatino about class names.
Diffstat (limited to 'editor/doc/doc_data.h')
-rw-r--r-- | editor/doc/doc_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/doc/doc_data.h b/editor/doc/doc_data.h index 41dfae428a..40141dd935 100644 --- a/editor/doc/doc_data.h +++ b/editor/doc/doc_data.h @@ -40,6 +40,7 @@ public: String name; String type; + String enumeration; String default_value; }; @@ -47,6 +48,7 @@ public: String name; String return_type; + String return_enum; String qualifiers; String description; Vector<ArgumentDoc> arguments; @@ -59,6 +61,7 @@ public: String name; String value; + String enumeration; String description; }; @@ -66,6 +69,7 @@ public: String name; String type; + String enumeration; String brief_description; String description; String setter, getter; |