summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHermet Park <chuneon.park@samsung.com>2020-03-13 10:26:14 +0900
committerHermet Park <chuneon.park@samsung.com>2020-03-13 10:26:14 +0900
commitb932fe8430697a973cf96ec226a3a56a196bd19c (patch)
tree8d5dae6e24083f1eee77a97231bdf243ab82fd89 /doc
parentfe4ee6bb9af005674b4d0beb01c89663ccef2589 (diff)
parente8100fa8b004f6344a765c623e883ccb60bda88c (diff)
downloadefl-b932fe8430697a973cf96ec226a3a56a196bd19c.tar.gz
Merge branch 'master' into devs/hermet/lottie
Diffstat (limited to 'doc')
-rw-r--r--doc/Doxyfile.in3
-rw-r--r--doc/eo_tutorial.dox4
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in
index 0a62bfdec7..17f86aec5e 100644
--- a/doc/Doxyfile.in
+++ b/doc/Doxyfile.in
@@ -666,7 +666,8 @@ EXCLUDE_PATTERNS = *_private* \
*/efl_*.eo.c \
*/efl_*.eo.h \
*/efl_*.eot.h \
- */Efl_*
+ */Efl_* \
+ */Eo.h
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
diff --git a/doc/eo_tutorial.dox b/doc/eo_tutorial.dox
index d8e7d7fb8d..baeb10d857 100644
--- a/doc/eo_tutorial.dox
+++ b/doc/eo_tutorial.dox
@@ -120,11 +120,11 @@
*
* @section create_class_h_side How to create a class - H side?
* - If the object is new, establish the public APIs
- * - #define \$(CLASS_NAME) \$(class_name)_class_get(): will be used to access data/inherit from this class...
+ * - \#define \$(CLASS_NAME) \$(class_name)_class_get(): will be used to access data/inherit from this class...
* - const Eo_Class *\$(class_name)_class_get(void) EINA_CONST: declaration of the function that will create the class (not the instance), i.e virtual table...
* - extern EAPI Eo_Op \$(CLASS_NAME)_BASE_ID: class id that will be essentially used to identify functions set of this class
* - enum of the function ids of the class in the form \$(CLASS_NAME)_SUB_ID: used to identify the function inside the class; function id is unique per class but (class id, function id) is unique per system..
- * - #define \$(CLASS_NAME)_ID(sub_id) (\$(CLASS_NAME)_BASE_ID + sub_id): formula to calculate the system function id
+ * - \#define \$(CLASS_NAME)_ID(sub_id) (\$(CLASS_NAME)_BASE_ID + sub_id): formula to calculate the system function id
* - define of each function consists of:
* - the name of the function that will be used in eo_do
* - parameters without types