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

#define CppCodegenTest_Class1_BODY

/************************************************************
 Class1 class body
 ************************************************************/

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

// Derived includes directives

// static attributes (if any)

/**
 * Assignment operator
 * @param cSource @param this 
 */
Class1& Class1::operator =(const Class1 /*in*/& cSource) {
	if (this == &cSource)
		return *this;

	iVal = cSource.iVal;

	return *this;
}

/**
 * Destructor
 * 
 */
Class1::~Class1() {

}

/**
 * Copy constructor
 * @param cSource 
 */
Class1::Class1(const Class1 /*in*/& cSource) {
	iVal = cSource.iVal;
}

/************************************************************
 End of Class1 class body
 ************************************************************/

Back to the top