summaryrefslogtreecommitdiff
path: root/ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm')
-rw-r--r--ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm b/ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm
new file mode 100644
index 00000000000..6421ae3858f
--- /dev/null
+++ b/ACE/bin/MakeProjectCreator/modules/VXTestWorkspaceCreator.pm
@@ -0,0 +1,29 @@
+package VXTestWorkspaceCreator;
+
+# ************************************************************
+# Description : VxTest Workspace create
+# Author : Johnny Willemsen
+# Create Date : 28/03/2008
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+
+use VXTestProjectCreator;
+use WorkspaceCreator;
+
+use vars qw(@ISA);
+@ISA = qw(WorkspaceCreator);
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub write_workspace {
+ return 1;
+}
+
+1;