From 5980fa86c1fc90849102bbc24679423f978e2a50 Mon Sep 17 00:00:00 2001 From: pacien Date: Tue, 9 Jan 2018 02:02:39 +0100 Subject: Add authorship info in headers doc Signed-off-by: pacien --- include/common/error.h | 3 +++ include/common/geom.h | 3 +++ include/common/mem.h | 3 +++ include/common/time.h | 3 +++ include/gui/button.h | 3 +++ include/gui/component.h | 11 +++++++++-- include/gui/group.h | 4 ++++ include/gui/gui.h | 6 ++++-- include/gui/pictureframe.h | 11 +++++++---- include/gui/textview.h | 6 ++++-- include/gui/window.h | 12 ++++++++---- include/morpher/matrix.h | 3 +++ include/morpher/morphing.h | 3 +++ include/morpher/quadrilateral.h | 3 +++ include/morpher/trianglemap.h | 3 +++ include/painter/canvas.h | 3 +++ include/painter/color.h | 3 +++ include/painter/rasterizer.h | 3 +++ 18 files changed, 72 insertions(+), 14 deletions(-) (limited to 'include') diff --git a/include/common/error.h b/include/common/error.h index 69104cb..ab355b7 100644 --- a/include/common/error.h +++ b/include/common/error.h @@ -3,6 +3,9 @@ /** * File: error.h + * + * Author: + * Pacien TRAN-GIRARD */ /** diff --git a/include/common/geom.h b/include/common/geom.h index 66e6c08..67d4148 100644 --- a/include/common/geom.h +++ b/include/common/geom.h @@ -3,6 +3,9 @@ /** * File: geom.h + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/common/mem.h b/include/common/mem.h index 1c46778..7a06f39 100644 --- a/include/common/mem.h +++ b/include/common/mem.h @@ -3,6 +3,9 @@ /** * File: mem.h + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/common/time.h b/include/common/time.h index 54a81af..bd50533 100644 --- a/include/common/time.h +++ b/include/common/time.h @@ -6,6 +6,9 @@ * > Who can say where the road goes... * > Where the day flows, only time... * -- Enya + * + * Author: + * Pacien TRAN-GIRARD */ #include "geom.h" diff --git a/include/gui/button.h b/include/gui/button.h index b5908cb..c447328 100644 --- a/include/gui/button.h +++ b/include/gui/button.h @@ -3,6 +3,9 @@ /** * File: button.h * Buttons handling + * + * Author: + * Adam NAILI */ #include "component.h" diff --git a/include/gui/component.h b/include/gui/component.h index 9700dfe..f545bbc 100644 --- a/include/gui/component.h +++ b/include/gui/component.h @@ -1,5 +1,12 @@ -#ifndef UPEM_C_COMPONENT_H -#define UPEM_C_COMPONENT_H +#ifndef UPEM_MORPHING_COMPONENT +#define UPEM_MORPHING_COMPONENT + +/** + * File: component.h + * + * Author: + * Adam NAILI + */ /** * Enum: Mode diff --git a/include/gui/group.h b/include/gui/group.h index 2a02ee4..1006c74 100644 --- a/include/gui/group.h +++ b/include/gui/group.h @@ -4,7 +4,11 @@ /** * File: group.h * Group of components + * + * Author: + * Adam NAILI */ + #include "component.h" /** diff --git a/include/gui/gui.h b/include/gui/gui.h index 10f59e8..a8b7bd0 100644 --- a/include/gui/gui.h +++ b/include/gui/gui.h @@ -1,12 +1,14 @@ #ifndef UPEM_MORPHING_GUI #define UPEM_MORPHING_GUI -#include "gui/window.h" - /** * File: gui.h + * + * Author: + * Adam NAILI */ +#include "gui/window.h" /** * Struct: GUI diff --git a/include/gui/pictureframe.h b/include/gui/pictureframe.h index a070190..f6edbf6 100644 --- a/include/gui/pictureframe.h +++ b/include/gui/pictureframe.h @@ -1,14 +1,17 @@ #ifndef UPEM_MORPHING_PITUREFRAME #define UPEM_MORPHING_PITUREFRAME -#include "morpher/morphing.h" -#include "painter/canvas.h" -#include "component.h" - /** * File: pictureframe.h + * + * Author: + * Adam NAILI */ +#include "morpher/morphing.h" +#include "painter/canvas.h" +#include "component.h" + /*Needed storage point to share memory between the origin PictureFrame and the target PictureFrame. It ables to cancel the Add constraint functionality*/ CartesianVector savedPoint; diff --git a/include/gui/textview.h b/include/gui/textview.h index 7414336..91106c0 100644 --- a/include/gui/textview.h +++ b/include/gui/textview.h @@ -1,11 +1,13 @@ #ifndef UPEM_MORPHING_TEXTVIEW #define UPEM_MORPHING_TEXTVIEW -#include "component.h" - /** * File: textview.h + * + * Author: + * Adam NAILI */ +#include "component.h" typedef struct { Component component; diff --git a/include/gui/window.h b/include/gui/window.h index e6b14dc..612da28 100644 --- a/include/gui/window.h +++ b/include/gui/window.h @@ -1,15 +1,19 @@ #ifndef UPEM_MORPHING_WINDOW #define UPEM_MORPHING_WINDOW -#include "MLV/MLV_keyboard.h" -#include "group.h" -#include "button.h" -#include "pictureframe.h" /** * File: window.h * Windows and components handling. + * + * Author: + * Adam NAILI */ +#include "MLV/MLV_keyboard.h" +#include "group.h" +#include "button.h" +#include "pictureframe.h" + /** * Struct: Window * Supports and handles components. diff --git a/include/morpher/matrix.h b/include/morpher/matrix.h index e3d5517..2763eb3 100644 --- a/include/morpher/matrix.h +++ b/include/morpher/matrix.h @@ -5,6 +5,9 @@ * File: matrix.h * > The matrix is a system Neo, that system is our enemy. * -- Morpheus + * + * Author: + * Pacien TRAN-GIRARD */ #include "common/geom.h" diff --git a/include/morpher/morphing.h b/include/morpher/morphing.h index 48c33b4..186144b 100644 --- a/include/morpher/morphing.h +++ b/include/morpher/morphing.h @@ -4,6 +4,9 @@ /** * File: morphing.h * Coordinate mapping for morphing transforms. + * + * Author: + * Pacien TRAN-GIRARD */ #include "common/geom.h" diff --git a/include/morpher/quadrilateral.h b/include/morpher/quadrilateral.h index c8cf3a1..b5fe1b2 100644 --- a/include/morpher/quadrilateral.h +++ b/include/morpher/quadrilateral.h @@ -4,6 +4,9 @@ /** * File: quadrilateral.h * Operations on quadrilaterals formed by adjacent triangles pairs. + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/morpher/trianglemap.h b/include/morpher/trianglemap.h index 735be2f..36e5b6d 100644 --- a/include/morpher/trianglemap.h +++ b/include/morpher/trianglemap.h @@ -4,6 +4,9 @@ /** * File: trianglemap.h * Represents a triangle map in a triangulation, in a plane oriented left to right and top to bottom. + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/painter/canvas.h b/include/painter/canvas.h index 51a7dc9..2daa523 100644 --- a/include/painter/canvas.h +++ b/include/painter/canvas.h @@ -3,6 +3,9 @@ /** * File: canvas.h + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/painter/color.h b/include/painter/color.h index 4a97f50..4331a24 100644 --- a/include/painter/color.h +++ b/include/painter/color.h @@ -5,6 +5,9 @@ * File: color.h * > Coming, colors in the air! Oh, everywhere! * -- The Rolling Stones + * + * Author: + * Pacien TRAN-GIRARD */ #include diff --git a/include/painter/rasterizer.h b/include/painter/rasterizer.h index 6859cb5..237f145 100644 --- a/include/painter/rasterizer.h +++ b/include/painter/rasterizer.h @@ -5,6 +5,9 @@ * File: rasterizer.h * > Everyday is a good day when you paint. * -- Bob Ross + * + * Author: + * Pacien TRAN-GIRARD */ #include "painter/canvas.h" -- cgit v1.2.3