Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ecfba3a42a09b873aab0d114c33f7888b760498f (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
/**
 * @author generated by eTrice
 *
 * Header File of DataClass DataClass2
 * 
 */

#ifndef _DATACLASS2_H_
#define _DATACLASS2_H_

#include "etDatatypes.h"


		
typedef struct {
	/*--------------------- attributes ---------------------*/
	int32 Attr1;
	float32 Attr2;
	int32 Attr3;
} DataClass2;



/*--------------------- operations ---------------------*/
void DataClass2_Operation1(DataClass2* self);

/* deep copy */
void DataClass2_deepCopy(DataClass2* source, DataClass2* target);


#endif /* _DATACLASS2_H_ */

Back to the top