Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ba39ae90524e1736d66da1ae093c043fafd1e766 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// --------------------------------------------------------
// Code generated by Papyrus C++
// --------------------------------------------------------

#ifndef CPPCODEGENTEST_CLASS7_H
#define CPPCODEGENTEST_CLASS7_H

/************************************************************
 Class7 class header
 ************************************************************/

#include "CppCodegenTest/Pkg_CppCodegenTest.h"

#include "AnsiCLibrary/Pkg_AnsiCLibrary.h"

// Include from Include stereotype (header)
#define helloworld 3
// End of Include stereotype (header)

/************************************************************/
/**
 * 
 */

class Class7 {

public:
	Class7() :
			defaultProp(43) {
	}

	/**
	 * 
	 */
	static int staticProp;

	/**
	 * 
	 */
	int defaultProp;

};
/************************************************************/
/* External declarations (package visibility)               */

/**
 * 
 */
int externProp;

/************************************************************/

/* Inline functions                                         */

/************************************************************
 End of Class7 class header
 ************************************************************/

#endif

Back to the top