Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b73f9f72b46beddd54b7c399dc25733e54c5ddb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
 * @author generated by eTrice
 *
 * Header File of ActorClass ATop
 * 
 */

#ifndef _ATOP_H_
#define _ATOP_H_

#include "etDatatypes.h"
#include "messaging/etMessage.h"



typedef struct ATop ATop;

/* const part of ActorClass (ROM) */
/* this actor class has no ports and thus no constant data */


/* variable part of ActorClass (RAM) */
struct ATop {
	/* data send ports */

	/*--------------------- attributes ---------------------*/
	
};

void ATop_init(ATop* self);

void ATop_receiveMessage(void* self, void* ifitem, const etMessage* msg);


/*--------------------- operations ---------------------*/


#endif /* _ATOP_H_ */

Back to the top