[DOC] update doxy file
This commit is contained in:
parent
034269a229
commit
edfa86c201
@ -10,9 +10,21 @@ def create(target, module_name):
|
|||||||
my_module.set_title("ejson: Ewol JSON parser")
|
my_module.set_title("ejson: Ewol JSON parser")
|
||||||
my_module.set_website("http://atria-soft.github.io/" + module_name)
|
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_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([
|
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
|
return my_module
|
@ -30,7 +30,7 @@ namespace ejson {
|
|||||||
class Null;
|
class Null;
|
||||||
class Number;
|
class Number;
|
||||||
class String;
|
class String;
|
||||||
//! @not-in-doc
|
//! @not_in_doc
|
||||||
class filePos {
|
class filePos {
|
||||||
private:
|
private:
|
||||||
size_t m_col;
|
size_t m_col;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user