Apache::XPP::Cache::Store - Cache store superclass


Apache-XPP documentation Contained in the Apache-XPP distribution.

Index


Code Index:

NAME

Top

Apache::XPP::Cache::Store - Cache store superclass

SYNOPSIS

Top

...

REQUIRES

Top

Carp

EXPORTS

Top

Nothing

DESCRIPTION

Top

Apache::XPP::Cache::Store provides a barebones AUTOLOAD for XPP's Cache-Store classes.

METHDOS

Top

r ( )

Returns the Apache request object

REVISION HISTORY

Top

 $Log: Store.pm,v $
 Revision 1.6  2002/01/16 21:06:01  kasei
 Updated VERSION variables to 2.01

 Revision 1.5  2000/09/11 20:12:23  david
 Various minor code efficiency improvements.

 Revision 1.4  2000/09/07 19:02:14  dougw
 Pod, over fix.

 Revision 1.3  2000/09/07 18:50:52  dougw
 Pod fixes




AUTHORS

Top

Greg Williams <greg@cnation.com>

SEE ALSO

Top

perl(1). Apache::XPP Apache::XPP::Cache


Apache-XPP documentation Contained in the Apache-XPP distribution.
# Apache::XPP::Cache::Store
#----------------------------
# $Revision: 1.6 $
# $Date: 2002/01/16 21:06:01 $
#---------------------------------

package Apache::XPP::Cache::Store;

use Carp;
use strict;
use vars qw( $AUTOLOAD $debug $debuglines );

BEGIN {
	$Apache::XPP::Cache::Store::REVISION = (qw$Revision: 1.6 $)[-1];
	$Apache::XPP::Cache::Store::Version  = '2.01';
	$debug		= undef;
	$debuglines	= 0;
}

*r = \&{ "Apache::XPP::r" };

*AUTOLOAD = \&{ "Apache::XPP::AUTOLOAD" };

1;

__END__