Go to most recent revision | Blame | Last modification | View Log | RSS feed
package XMLProjectBase;
# ************************************************************
# Description : An XML base module for Project Creators
# Author : Chad Elliott
# Create Date : 1/30/2006
# ************************************************************
# ************************************************************
# Pragmas
# ************************************************************
use strict;
# ************************************************************
# Subroutine Section
# ************************************************************
sub get_quote_symbol {
#my($self) = shift;
return '"';
}
sub get_gt_symbol {
#my($self) = shift;
return '>';
}
sub get_lt_symbol {
#my($self) = shift;
return '<';
}
sub get_and_symbol {
#my($self) = shift;
return '&&';
}
1;