[DOC] update doxy file

This commit is contained in:
Edouard DUPIN 2016-04-08 21:47:56 +02:00
parent 034269a229
commit edfa86c201
2 changed files with 15 additions and 3 deletions

View File

@ -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

View File

@ -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;