Wed Oct 20 09:18:05 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
[MPC.git] / modules / WB30WorkspaceCreator.pm
blob00a4a44905913ce3168f254e1afad9d8922292dc
1 package WB30WorkspaceCreator;
3 # ************************************************************
4 # Description : Wind River Workbench 3.0 generator
5 # Author : Adam Mitz (Object Computing, Inc.)
6 # Create Date : 07/21/2010
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 use WB26WorkspaceCreator;
16 use WB30ProjectCreator;
18 use vars qw(@ISA);
19 @ISA = qw(WB26WorkspaceCreator);
21 # ************************************************************
22 # Subroutine Section
23 # ************************************************************
25 sub get_id_for_comment {
26 return '$Id$';
29 sub get_project_prefix {
30 return 'wb_';
33 sub get_additional_output {
34 ## Create the accompanying list file. It always goes in the same
35 ## directory as the first workspace output file. See
36 ## WorkspaceCreator.pm for a description of the array elements.
37 return [[undef, 'wb30projects.lst', \&WB26WorkspaceCreator::list_file_body]];