[DOC] add basic documentation
This commit is contained in:
parent
1bf1ddc10d
commit
1ab071e3ce
@ -1,8 +1,7 @@
|
||||
dollar
|
||||
======
|
||||
|
||||
`dollar` is a $1 and $N gesture recognition
|
||||
|
||||
`dollar` is a $1, $N, $P and $P+ gesture recognition
|
||||
|
||||
Instructions
|
||||
============
|
||||
|
1
authors.txt
Normal file
1
authors.txt
Normal file
@ -0,0 +1 @@
|
||||
Mr DUPIN Edouard <yui.heero@gmail.com>
|
39
doc/mainpage.md
Normal file
39
doc/mainpage.md
Normal file
@ -0,0 +1,39 @@
|
||||
DOLLAR library {#mainpage}
|
||||
===============
|
||||
|
||||
@tableofcontents
|
||||
|
||||
What is DOLLAR, and how can I use it? {#dollar_mainpage_what}
|
||||
====================================
|
||||
|
||||
`dollar` is a $1, $N, $P and $P+ gesture recognition
|
||||
|
||||
the dollar library is base on the [dollar research](http://depts.washington.edu/aimgroup/proj/dollar/).
|
||||
|
||||
What languages are supported? {#dollar_mainpage_lang}
|
||||
=============================
|
||||
|
||||
DOLLAR is written in C++.
|
||||
|
||||
Are there any licensing restrictions? {#dollar_mainpage_license_restriction}
|
||||
=====================================
|
||||
|
||||
DOLLAR is **FREE software** and _all sub-library are FREE and staticly linkable !!!_
|
||||
|
||||
License (APACHE-2.0) {#dollar_mainpage_license}
|
||||
====================
|
||||
|
||||
Copyright dollar Edouard DUPIN
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
<http://www.apache.org/licenses/LICENSE-2.0>
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
@ -14,6 +14,9 @@
|
||||
#include <dollar/Gesture.h>
|
||||
#include <ememory/memory.h>
|
||||
|
||||
/**
|
||||
* @brief dollar library main namespace
|
||||
*/
|
||||
namespace dollar {
|
||||
class Engine {
|
||||
protected:
|
||||
|
38
doxy_dollar.py
Normal file
38
doxy_dollar.py
Normal file
@ -0,0 +1,38 @@
|
||||
#!/usr/bin/python
|
||||
import os
|
||||
import doxy.module as module
|
||||
import doxy.debug as debug
|
||||
import doxy.tools as tools
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name)
|
||||
my_module.set_version("version.txt")
|
||||
my_module.set_title("$N gesture recognition")
|
||||
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.add_path([
|
||||
module_name,
|
||||
"doc"
|
||||
])
|
||||
my_module.add_depend([
|
||||
'elog',
|
||||
'etk',
|
||||
'ejson',
|
||||
'esvg',
|
||||
'ememory',
|
||||
])
|
||||
my_module.add_exclude_symbols([
|
||||
'*operator<<*',
|
||||
])
|
||||
my_module.add_exclude_file([
|
||||
'debug.h',
|
||||
])
|
||||
my_module.add_file_patterns([
|
||||
'*.h',
|
||||
'*.md',
|
||||
])
|
||||
my_module.add_module_define([
|
||||
"PARSE_DOXYGEN",
|
||||
])
|
||||
|
||||
return my_module
|
@ -22,7 +22,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
@ -22,7 +22,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
@ -19,7 +19,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
@ -22,7 +22,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
@ -22,7 +22,7 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
@ -19,10 +19,10 @@ def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
return "authors.txt"
|
||||
|
||||
def get_version():
|
||||
return [0,2,"dev"]
|
||||
return "version.txt"
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
|
1
version.txt
Normal file
1
version.txt
Normal file
@ -0,0 +1 @@
|
||||
0.2-dev
|
Loading…
x
Reference in New Issue
Block a user