WebRadioApp  0.1
_EffectsEffectTimerClass.h
Go to the documentation of this file.
1 /*******************************************************************************
2 *
3 * E M B E D D E D W I Z A R D P R O J E C T
4 *
5 * Copyright (c) TARA Systems GmbH
6 * written by Paul Banach and Manfred Schweyer
7 *
8 ********************************************************************************
9 *
10 * This file was generated automatically by Embedded Wizard Studio.
11 *
12 * Please do not make any modifications of this file! The modifications are lost
13 * when the file is generated again by Embedded Wizard Studio!
14 *
15 * The template of this heading text can be found in the file 'head.ewt' in the
16 * directory 'Platforms' of your Embedded Wizard installation directory. If you
17 * wish to adapt this text, please copy the template file 'head.ewt' into your
18 * project directory and edit the copy only. Please avoid any modifications of
19 * the original template file!
20 *
21 * Version : 10.00
22 * Profile : STM32H747
23 * Platform : STM.STM32.RGB565
24 *
25 *******************************************************************************/
26 
27 #ifndef _EffectsEffectTimerClass_H
28 #define _EffectsEffectTimerClass_H
29 
30 #ifdef __cplusplus
31  extern "C"
32  {
33 #endif
34 
35 #include "ewrte.h"
36 #if EW_RTE_VERSION != 0x000A0000
37  #error Wrong version of Embedded Wizard Runtime Environment.
38 #endif
39 
40 #include "ewgfx.h"
41 #if EW_GFX_VERSION != 0x000A0000
42  #error Wrong version of Embedded Wizard Graphics Engine.
43 #endif
44 
45 #include "_CoreTimer.h"
46 
47 /* Forward declaration of the class Effects::EffectTimerClass */
48 #ifndef _EffectsEffectTimerClass_
49  EW_DECLARE_CLASS( EffectsEffectTimerClass )
50 #define _EffectsEffectTimerClass_
51 #endif
52 
53 
54 /* Deklaration of class : 'Effects::EffectTimerClass' */
55 EW_DEFINE_FIELDS( EffectsEffectTimerClass, CoreTimer )
56 EW_END_OF_FIELDS( EffectsEffectTimerClass )
57 
58 /* Virtual Method Table (VMT) for the class : 'Effects::EffectTimerClass' */
59 EW_DEFINE_METHODS( EffectsEffectTimerClass, CoreTimer )
60  EW_METHOD( Trigger, void )( EffectsEffectTimerClass _this )
61 EW_END_OF_METHODS( EffectsEffectTimerClass )
62 
63 /* The method Trigger() will be invoked when the timer is expired (when the interval
64  defined in @Begin or @Period is elapsed). The method can be overridden and implemented
65  in derived classes. The default implementation of this method sends a signal
66  to the slot method stored in the @OnTrigger property. */
67 void EffectsEffectTimerClass_Trigger( EffectsEffectTimerClass _this );
68 
69 #ifdef __cplusplus
70  }
71 #endif
72 
73 #endif /* _EffectsEffectTimerClass_H */
74 
75 /* Embedded Wizard */
ewrte.h
_CoreTimer.h
EW_END_OF_FIELDS
#define EW_END_OF_FIELDS(aClass)
Definition: ewrte.h:460
EW_DECLARE_CLASS
#define EW_DECLARE_CLASS(aClass)
Definition: ewrte.h:393
EW_METHOD
EW_METHOD(Trigger, void)(EffectsEffectTimerClass _this) void EffectsEffectTimerClass_Trigger(EffectsEffectTimerClass _this)
ewgfx.h
EW_DEFINE_METHODS
#define EW_DEFINE_METHODS(aClass, aSuperClass)
Definition: ewrte.h:524
EffectsEffectTimerClass_Trigger
void EffectsEffectTimerClass_Trigger(EffectsEffectTimerClass _this)
Definition: Effects.c:2484
EW_END_OF_METHODS
#define EW_END_OF_METHODS(aClass)
Definition: ewrte.h:539
EW_DEFINE_FIELDS
#define EW_DEFINE_FIELDS(aClass, aSuperClass)
Definition: ewrte.h:451