Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.cpp')
-rw-r--r--tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.cpp b/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.cpp
new file mode 100644
index 00000000000..730349c9c02
--- /dev/null
+++ b/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.cpp
@@ -0,0 +1,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
+ ************************************************************/ \ No newline at end of file

Back to the top