| Apache-XPP documentation | Contained in the Apache-XPP distribution. |
Apache::XPP::Cache::Store - Cache store superclass
...
Carp
Nothing
Apache::XPP::Cache::Store provides a barebones AUTOLOAD for XPP's Cache-Store classes.
r ( )Returns the Apache request object
$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
Greg Williams <greg@cnation.com>
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__