Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: ab4bbb2742beb9e96af8799f2b36c11f35143019 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                       
 
                                                           









                                                                   
/**
 * @author generated by eTrice
 *
 * Source File of DataClass DataClass2
 * 
 */

#include "DataClass2.h"

#include <string.h>



/*--------------------- operations ---------------------*/
void DataClass2_Operation1(DataClass2* self) {
	/*nothing to do*/
}

// deep copy
void DataClass2_deepCopy(DataClass2* source, DataClass2* target) {
	memcpy(target, source, sizeof(DataClass2));
}


Back to the top