
VCS::LibCVS::DirectoryBranch - A CVS managed directory, viewed from a branch.


Represents a directory managed by CVS, viewed from a specific branch.
When getting the files in the directory, only those on that branch will be considered.

$dir_branch = VCS::LibCVS::DirectoryBranch->new($dir, $tag_spec)

$dir = $dir_branch->get_directory()
$tag = $dir_branch->get_tag()
$file_bs = $dir_branch->get_file_branches()
Keys are the names of the files without directory specified Values are VCS::LibCVS::FileBranch objects
For each file in this directory, on this branch, return a FileBranch object.
It doesn't include files whose tip revision on this branch is dead.

VCS::LibCVS