Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 196481c0e363756b0562af3e2acc9c4ebd187f64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * DataClass.h
 *
 *  Created on: 22.12.2011
 *      Author: tschuetz
 */

#ifndef DATACLASS_H_
#define DATACLASS_H_



struct DataClass {
	int att1;
};

#endif /* DATACLASS_H_ */

Back to the top