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.h')
-rw-r--r--tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.h b/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.h
new file mode 100644
index 00000000000..fb742f16899
--- /dev/null
+++ b/tests/junit/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen.tests/ExpectedModel/Class3.h
@@ -0,0 +1,57 @@
+// --------------------------------------------------------
+// Code generated by Papyrus C++
+// --------------------------------------------------------
+
+#ifndef CPPCODEGENTEST_CLASS3_H
+#define CPPCODEGENTEST_CLASS3_H
+
+/************************************************************
+ Class3 class header
+ ************************************************************/
+
+#include "CppCodegenTest/Pkg_CppCodegenTest.h"
+
+#include "AnsiCLibrary/Pkg_AnsiCLibrary.h"
+
+#include "CppCodegenTest/Class2.h"
+
+/************************************************************/
+/**
+ *
+ */
+
+class Class3: public Class2 {
+
+public:
+
+ /**
+ * Inherited method overriding.
+ * @param a @param b @param
+ */
+ double virtualOp(double /*in*/a, double /*in*/b);
+
+ /**
+ * Inherited virtual destructor
+ *
+ */
+ ~Class3();
+
+ /**
+ * Default constructor
+ *
+ */
+ Class3();
+
+};
+/************************************************************/
+/* External declarations (package visibility) */
+
+/************************************************************/
+
+/* Inline functions */
+
+/************************************************************
+ End of Class3 class header
+ ************************************************************/
+
+#endif

Back to the top