From edfa86c20163a6b2b0671563177966345c276c23 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 8 Apr 2016 21:47:56 +0200 Subject: [PATCH] [DOC] update doxy file --- doxy_ejson.py | 16 ++++++++++++++-- ejson/Value.h | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) 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;