Merge pull request #124 from DOCGroup/jwillemsen-patch-1
[MPC.git] / modules / BorlandPropertyBase.pm
blob294a72ba4735f867f2eb430ebf22567e492b0cc0
1 package BorlandPropertyBase;
3 # ************************************************************
4 # Description : A Borland base module for properties.
5 # Author : Chad Elliott
6 # Create Date : 5/5/2009
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
14 use WinPropertyBase;
16 our @ISA = qw(WinPropertyBase);
18 # ************************************************************
19 # Subroutine Section
20 # ************************************************************
22 sub get_properties {
23 my $self = shift;
25 ## Get the base class properties and add the properties that we
26 ## support.
27 my $props = $self->WinPropertyBase::get_properties();
29 ## All projects that use this base class are for Borland compilers.
30 $$props{'borland'} = 1;
32 return $props;