Merge pull request #228 from DOCGroup/jwillemsen-patch-1
[MPC.git] / modules / WB30WorkspaceCreator.pm
blobda73927ad963434d091c130918099603e434c4dc
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_project_prefix {
26 return 'wb_';
29 sub get_additional_output {
30 ## Create the accompanying list file. It always goes in the same
31 ## directory as the first workspace output file. See
32 ## WorkspaceCreator.pm for a description of the array elements.
33 return [[undef, 'wb30projects.lst', \&WB26WorkspaceCreator::list_file_body]];