diff --git a/doxy_ejson.py b/doxy_ejson.py index 6fc68f5..662222e 100644 --- a/doxy_ejson.py +++ b/doxy_ejson.py @@ -10,9 +10,21 @@ def create(target, module_name): my_module.set_title("ejson: Ewol JSON parser") my_module.set_website("http://atria-soft.github.io/" + module_name) my_module.set_website_sources("http://github.com/atria-soft/" + module_name) - my_module.set_path(os.path.join(tools.get_current_path(__file__), module_name)) + my_module.add_path([ + module_name, + ]) my_module.add_module_depend([ - 'etk' + 'etk', + ]) + my_module.add_exclude_symbols([ + '*operator<<*', + ]) + my_module.add_exclude_file([ + 'debug.h', + ]) + my_module.add_file_patterns([ + '*.h', + '*.md', ]) return my_module \ No newline at end of file diff --git a/ejson/Value.h b/ejson/Value.h index d0b7cd9..b9ee707 100644 --- a/ejson/Value.h +++ b/ejson/Value.h @@ -30,7 +30,7 @@ namespace ejson { class Null; class Number; class String; - //! @not-in-doc + //! @not_in_doc class filePos { private: size_t m_col;