VCS::LibCVS::Datum::PathName - A CVS datum for a CVS pathname


VCS-LibCVS documentation Contained in the VCS-LibCVS distribution.

Index


Code Index:

NAME

Top

VCS::LibCVS::Datum::PathName - A CVS datum for a CVS pathname

SYNOPSIS

Top

  $string = VCS::LibCVS::Datum::PathName->new(["adir","/home/cvs/adir/file"]);

DESCRIPTION

Top

A CVS Pathname, used in CVS responses. It consists of a local directory name and a repository filename. See the cvsclient docs for more info.

SUPERCLASS

Top

VCS::LibCVS::Datum

SEE ALSO

Top

  VCS::LibCVS::Datum


VCS-LibCVS documentation Contained in the VCS-LibCVS distribution.
#
# Copyright (c) 2003,2004,2005 Alexander Taler (dissent@0--0.org)
#
# All rights reserved. This program is free software; you can redistribute it
# and/or modify it under the same terms as Perl itself.
#

package VCS::LibCVS::Datum::PathName;

use strict;
use Carp;

###############################################################################
# Class constants
###############################################################################

use constant REVISION => '$Header: /cvsroot/libcvs-perl/libcvs-perl/VCS/LibCVS/Datum/PathName.pm,v 1.8 2005/10/10 12:52:12 dissent Exp $ ';

use vars ('@ISA');
@ISA = ("VCS::LibCVS::Datum");

###############################################################################
# Class variables
###############################################################################

###############################################################################
# Private variables
###############################################################################

###############################################################################
# Class routines
###############################################################################

###############################################################################
# Instance routines
###############################################################################

###############################################################################
# Private routines
###############################################################################

sub _data_names { return ("LocalDirectory", "RemoteFile"); }

1;