Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2150d7b41e27b330a43ba20e1660f6ef7dd90d3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "DataClass2.h"

#include <string.h>


// TODO: do we need setters and getters for C and C++ ?

//--------------------- 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