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

#define CppCodegenTest_Class3_BODY

/************************************************************
 Class3 class body
 ************************************************************/

// include associated header file
#include "CppCodegenTest/Class3.h"

// Derived includes directives

// static attributes (if any)

/**
 * Inherited method overriding.
 * @param a @param b @param  
 */
double Class3::virtualOp(double /*in*/a, double /*in*/b) {
	return a + b;
}

/**
 * Inherited virtual destructor
 * 
 */
Class3::~Class3() {

}

/**
 * Default constructor
 * 
 */
Class3::Class3() {

}

/************************************************************
 End of Class3 class body
 ************************************************************/

Back to the top