Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a9ce8cc797fa8064dbe584fd6910a4d4446e8ae5 (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
60
61
62
63
64
// --------------------------------------------------------
// Code generated by Papyrus C++
// --------------------------------------------------------

#ifndef CPPCODEGENTEST_PACKAGE1_CLASS8_H
#define CPPCODEGENTEST_PACKAGE1_CLASS8_H

/************************************************************
 Class8 class header
 ************************************************************/

#include "CppCodegenTest/Package1/Pkg_Package1.h"

#include "AnsiCLibrary/Pkg_AnsiCLibrary.h"

namespace Package1 {

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

class Class8
{

public:
	Class8() :
			defaultIValue(12)
	{
	}

	/**
	 * 
	 */
	int defaultIValue;

	/**
	 * 
	 * @param iVal1 @param iVal2 @param cVal1 @param cVal2 @param this 
	 */
	int operation1(int /*in*/iVal1, int /*in*/iVal2 = 2, char /*in*/cVal1,
			char /*in*/cVal2);

	/**
	 * 
	 * @param iVal1 
	 */
	void operation1(int /*in*/iVal1);

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

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

/* Inline functions                                         */

} // of namespace Package1

/************************************************************
 End of Class8 class header
 ************************************************************/

#endif

Back to the top