The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::CVS::PlainFile - class that implements a file in CVS

SYNOPSIS

 use Apache::CVS::PlainFile();

 $file = Apache::CVS::PlainFile->new($path);

 $path = $file->path();
 $name = $file->name();

DESCRIPTION

The Apache::CVS::PlainFile class implements a base file that resides in a CVS repository. A versioned file is implemented by the class Apache::CVS::VersionPlainFile.

$file = Apache::CVS::PlainFile->new($path)

Construct a new Apache::CVS::PlainFile object with the given path.

$file->path()

Returns the full path of this file.

$file->name()

Returns just the filename of this file.

SEE ALSO

Apache::CVS, Apache::CVS::File, Apache::CVS::Directory

AUTHOR

John Barbee <barbee@veribox.net>

COPYRIGHT

Copyright 2001-2002 John Barbee

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.