HTTP::Daemon::Threaded::CGIHandler


HTTP-Daemon-Threaded documentation Contained in the HTTP-Daemon-Threaded distribution.

Index


Code Index:


HTTP-Daemon-Threaded documentation Contained in the HTTP-Daemon-Threaded distribution.
package HTTP::Daemon::Threaded::CGIHandler;

use HTTP::Daemon::Threaded::Logable;
use base qw(HTTP::Daemon::Threaded::Logable);

use strict;
use warnings;

our $VERSION = '0.91';

sub new {
	my ($class, %args) = @_;
	return bless \%args, $class;
}


sub handleCGI {
	my ($self, $cgi, $session) = @_;
}

1;