1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
package BorlandProjectBase;
# ************************************************************
# Description : A Borland base module for Borland Project Creators
# Author : Chad Elliott
# Create Date : 5/5/2009
# $Id: BorlandProjectBase.pm 2035 2011-10-06 15:05:21Z johnnyw $
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
use WinProjectBase;
use BorlandPropertyBase;
our @ISA = qw(BorlandPropertyBase WinProjectBase);
# ************************************************************
# Subroutine Section
# ************************************************************
1;
|