From 390e8a1a1c80bcd9436a3d59f30040f74127e53f Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sun, 2 Oct 2016 23:46:20 +0200 Subject: [PATCH] [DEBUG] correct .hpp port + clean libC include --- doxy_eproperty.py | 2 +- eproperty/details/Range.hxx | 2 +- eproperty/details/Value.hxx | 2 +- monk_eproperty.py | 19 ------------------- 4 files changed, 3 insertions(+), 22 deletions(-) delete mode 100644 monk_eproperty.py diff --git a/doxy_eproperty.py b/doxy_eproperty.py index 059e746..eb04abc 100644 --- a/doxy_eproperty.py +++ b/doxy_eproperty.py @@ -27,7 +27,7 @@ def create(target, module_name): 'debug.hpp', ]) my_module.add_file_patterns([ - '*.h', + '*.hpp', '*.md', ]) diff --git a/eproperty/details/Range.hxx b/eproperty/details/Range.hxx index f09ba83..5f0fe74 100644 --- a/eproperty/details/Range.hxx +++ b/eproperty/details/Range.hxx @@ -7,7 +7,7 @@ */ #pragma once -#include +#include template diff --git a/eproperty/details/Value.hxx b/eproperty/details/Value.hxx index 550a33e..b9da39b 100644 --- a/eproperty/details/Value.hxx +++ b/eproperty/details/Value.hxx @@ -7,7 +7,7 @@ */ #pragma once -#include +#include template diff --git a/monk_eproperty.py b/monk_eproperty.py deleted file mode 100644 index 7d444f0..0000000 --- a/monk_eproperty.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python -import monkModule -import monkTools as tools -import os - -def get_desc(): - return "E-property simple property interface" - -def create(): - # module name is 'ewol' and type binary. - myModule = monkModule.Module(__file__, 'eproperty', 'LIBRARY') - # enable doculentation : - myModule.set_website("http://atria-soft.github.io/eproperty/") - myModule.set_website_sources("http://github.com/atria-soft/eproperty/") - myModule.set_path(os.path.join(tools.get_current_path(__file__), "eproperty")) - myModule.set_path_general_doc(os.path.join(tools.get_current_path(__file__), "doc")) - # add the currrent module at the - return myModule -