Skip to main content
summaryrefslogtreecommitdiffstats
blob: cdbc8316b4a60b247c23c6ca9664b7bc3fe6bfae (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
// --------------------------------------------------------
// Code generated by Papyrus C++
// --------------------------------------------------------

#ifndef CPPCODEGENTEST_CLASS5_H
#define CPPCODEGENTEST_CLASS5_H

/************************************************************
 Class5 class header
 ************************************************************/

#include "CppCodegenTest/Pkg_CppCodegenTest.h"

#include "AnsiCLibrary/Pkg_AnsiCLibrary.h"

/************************************************************/
/**
 * C++ Virtual Interface
 */

class Class5 {

public:

	/**
	 * 
	 */
	int externalProp;

	/**
	 * 
	 * @param iReturn 
	 */
	virtual int pureVirtualOp() = 0;

	/**
	 * 
	 * @param iReturn 
	 */
	virtual int* pureVirtualConstOp() = 0;

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

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

/* Inline functions                                         */

/************************************************************
 End of Class5 class header
 ************************************************************/

#endif

Back to the top