Merge pull request #228 from DOCGroup/jwillemsen-patch-1
[MPC.git] / modules / WinPropertyBase.pm
blob6ab45331b420ed3959c507dcde8b1856a8726dfd
1 package WinPropertyBase;
3 # ************************************************************
4 # Description : A Windows base module for properties
5 # Author : Chad Elliott
6 # Create Date : 3/9/2010
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 # ************************************************************
16 # Subroutine Section
17 # ************************************************************
19 sub get_properties {
20 my $self = shift;
22 ## Get the base class properties and add the properties that we
23 ## support.
24 my $props = $self->Creator::get_properties();
26 ## All projects that use this base class are for Windows.
27 $$props{'windows'} = 1;
29 return $props;