[DEV] add monk documentation

This commit is contained in:
Edouard DUPIN 2013-12-22 19:02:55 +01:00
parent 91198bd195
commit c1ab11e532
3 changed files with 18 additions and 8 deletions

View File

@ -46,14 +46,14 @@ multiplicity :
{x,y} ==> {x, y} {x,y} ==> {x, y}
*/ */
typedef struct { struct convertionTable {
bool haveBackSlash; bool haveBackSlash;
char inputValue; char inputValue;
char newValue; char newValue;
enum etk::regExpPrivateSection specialChar; enum etk::regExpPrivateSection specialChar;
}convertionTable_ts; };
extern const convertionTable_ts constConvertionTable[]; extern const struct convertionTable constConvertionTable[];
extern const int64_t constConvertionTableSize; extern const int64_t constConvertionTableSize;
void displayElem(const std::vector<char32_t>& _data, int64_t _start=0, int64_t _stop=0x7FFFFFFF); void displayElem(const std::vector<char32_t>& _data, int64_t _start=0, int64_t _stop=0x7FFFFFFF);

View File

@ -5,11 +5,6 @@ import lutinTools
def Create(target): def Create(target):
# module name is 'edn' and type binary. # module name is 'edn' and type binary.
myModule = lutinModule.module(__file__, 'etk', 'LIBRARY') myModule = lutinModule.module(__file__, 'etk', 'LIBRARY')
# enable doculentation :
myModule.doc_enable()
myModule.documentation.set_website("http://HeeroYui.github.io/etk/")
myModule.documentation.set_path(lutinTools.GetCurrentPath(__file__) + "/etk/")
myModule.documentation.set_external_link(['linearmath','minizip'])
# add extra compilation flags : # add extra compilation flags :
myModule.add_extra_compile_flags() myModule.add_extra_compile_flags()
# add the file to compile: # add the file to compile:

15
monk_etk.py Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/python
import monkModule as module
import monkTools as tools
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'etk', 'LIBRARY')
# enable doculentation :
myModule.set_website("http://heeroyui.github.io/etk/")
myModule.set_path(tools.get_current_path(__file__) + "/etk/")
# add the currrent module at the
return myModule
def get_desc():
return ""