Revision 3 (by ahitrov@rambler.ru, 2010/03/24 15:19:32) The CORE
package @NAME@::Apache;

# ----------------------------------------------------------------------------
# �������� Apache ��� ������� @NAME@
# � ���� ������ ����������� ������ ���� ������� child_init(), 
#   request_init(), child_exit().
# ----------------------------------------------------------------------------

use strict;
use vars qw($VERSION @ISA @EXPORT);

use Exporter;
@ISA = qw(Exporter);
$VERSION = '1.0';


# ��� ������� ����� ������� � ������ �������� ��������� �������� Apache
sub child_init {
	my $proto = shift;
}

# ��� ������� ����� ������� � ������ ������ ��������� ������ �������
sub request_init {
}

# ��� ������� ����� ������� � ������ ����������� ��������� �������� Apache
sub child_exit {
}


1;