Source: libclass-virtual-perl Section: perl Priority: optional Build-Depends: debhelper (>= 9) Build-Depends-Indep: perl, libcarp-assert-perl, libclass-data-inheritable-perl, libclass-isa-perl, Maintainer: Debian Perl Group Uploaders: Dominic Hargreaves Standards-Version: 4.1.0 Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libclass-virtual-perl.git Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libclass-virtual-perl.git Homepage: https://metacpan.org/release/Class-Virtual Testsuite: autopkgtest-pkg-perl Package: libclass-virtual-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libcarp-assert-perl, libclass-data-inheritable-perl, libclass-isa-perl, Description: Base class for virtual base classes This is a base class for implementing virtual base classes (what some people call an abstract class). Kinda kooky. It allows you to explicitly declare what methods are virtual and that must be implemented by subclasses. This might seem silly, since your program will halt and catch fire when an unimplemented virtual method is hit anyway, but there's some benefits. . The error message is more informative. Instead of the usual "Can't locate object method" error, you'll get one explaining that a virtual method was left unimplemented. . Subclass authors can explicitly check to make sure they've implemented all the necessary virtual methods. When used as part of a regression test, it will shield against the virtual method requirements changing out from under the subclass.