felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9a6dd32cb1e8f5b1bcd23d32fc4b2d5fa425abbd
commit 9a6dd32cb1e8f5b1bcd23d32fc4b2d5fa425abbd Author: Lauro Moura <[email protected]> Date: Mon Mar 19 21:37:04 2018 -0300 eolian_cxx: Fill documentation of part_def. --- src/lib/eolian_cxx/grammar/klass_def.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/eolian_cxx/grammar/klass_def.hpp b/src/lib/eolian_cxx/grammar/klass_def.hpp index 21a1d7b8d1..1db8df9444 100644 --- a/src/lib/eolian_cxx/grammar/klass_def.hpp +++ b/src/lib/eolian_cxx/grammar/klass_def.hpp @@ -848,6 +848,7 @@ struct part_def { klass_name klass; std::string name; + documentation_def documentation; //bool beta, protect; // can it be applied?? friend inline bool operator==(part_def const& lhs, part_def const& rhs) @@ -867,7 +868,8 @@ struct part_def part_def(Eolian_Part const* part, Eolian_Unit const*) : klass(klass_name(::eolian_part_class_get(part), {attributes::qualifier_info::is_none, std::string()})) - , name(::eolian_part_name_get(part)) {} + , name(::eolian_part_name_get(part)) + , documentation(::eolian_part_documentation_get(part)) {} }; inline Eolian_Class const* get_klass(klass_name const& klass_name_, Eolian_Unit const* unit); --
