jgsmith 01/07/25 14:09:53
Added: perl/lib/AppSwitch Base.pm
Log:
Initial commit
Revision Changes Path
1.1 services/perl/lib/AppSwitch/Base.pm
Index: Base.pm
===================================================================
package AppSwitch::Base;
our $VERSION = q(0.01);
# $Id: Base.pm,v 1.1 2001/07/25 21:09:53 jgsmith Exp $
__END__
=head1 NAME
AppSwitch::Base
=head1 SYNOPSIS
use AppSwitch::Base::Client;
use AppSwitch::Base::Server;
=head1 DESCRIPTION
AppSwitch::Base provides the client and service interfaces for
services. Actual interface classes should be derived from this class.
This class should not be used alone.
=head1 AUTHOR
James Smith <jg...@ja...>
=head1 SEE ALSO
L<AppSwitch::Base::Client>,
L<AppSwitch::Base::Server>
=head1 COPYRIGHT
Copyright (C) 2001 James Smith
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the Project nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
=cut
|