Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/cpp-codegen/org.eclipse.papyrus.cpp.codegen/templates/generatorTwoArgs.skeleton')
-rw-r--r--extraplugins/cpp-codegen/org.eclipse.papyrus.cpp.codegen/templates/generatorTwoArgs.skeleton19
1 files changed, 19 insertions, 0 deletions
diff --git a/extraplugins/cpp-codegen/org.eclipse.papyrus.cpp.codegen/templates/generatorTwoArgs.skeleton b/extraplugins/cpp-codegen/org.eclipse.papyrus.cpp.codegen/templates/generatorTwoArgs.skeleton
new file mode 100644
index 00000000000..1e268756e0c
--- /dev/null
+++ b/extraplugins/cpp-codegen/org.eclipse.papyrus.cpp.codegen/templates/generatorTwoArgs.skeleton
@@ -0,0 +1,19 @@
+/*******************************************************************************
+ * Copyright (c) 2006 CEA List.
+ * All rights reserved. This program and the accompanying materials
+ * are property of the CEA, their use is subject to specific agreement
+ * with the CEA.
+ *
+ * Contributors:
+ * CEA List - initial API and implementation
+ *******************************************************************************/
+
+package PACKAGE;
+
+public class CLASS
+{
+ public String generate(Object argument1, Object argument2)
+ {
+ return "";
+ }
+} \ No newline at end of file

Back to the top