diff options
Diffstat (limited to 'include/gui/component.h')
-rw-r--r-- | include/gui/component.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/gui/component.h b/include/gui/component.h index 97a23fe..1a255e2 100644 --- a/include/gui/component.h +++ b/include/gui/component.h | |||
@@ -1,8 +1,12 @@ | |||
1 | #ifndef UPEM_C_COMPONENT_H | 1 | #ifndef UPEM_MORPHING_COMPONENT |
2 | #define UPEM_C_COMPONENT_H | 2 | #define UPEM_MORPHING_COMPONENT |
3 | |||
3 | /** | 4 | /** |
4 | * File: component.h | 5 | * File: component.h |
5 | * Components implementation. | 6 | * Components implementation. |
7 | * | ||
8 | * Author: | ||
9 | * Adam NAILI | ||
6 | */ | 10 | */ |
7 | 11 | ||
8 | /** | 12 | /** |
@@ -26,6 +30,7 @@ typedef enum { | |||
26 | * static attribute of the class. | 30 | * static attribute of the class. |
27 | **/ | 31 | **/ |
28 | extern Mode mode; | 32 | extern Mode mode; |
33 | |||
29 | /** | 34 | /** |
30 | * Components have no access to exterior. They can access only to themselves due to the generic implementation. These | 35 | * Components have no access to exterior. They can access only to themselves due to the generic implementation. These |
31 | * variables are the easiest way to share memory between components. | 36 | * variables are the easiest way to share memory between components. |
@@ -69,4 +74,4 @@ typedef struct Component { | |||
69 | PrintMethod print_method; | 74 | PrintMethod print_method; |
70 | } Component; | 75 | } Component; |
71 | 76 | ||
72 | #endif //UPEM_C_COMPONENT_H | 77 | #endif |