You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
485 B

package ksb::ModuleSet::Null;
# Class: ModuleSet::Null
#
# Used automatically by <Module> to represent the abscence of a <ModuleSet> without
# requiring definedness checks.
use strict;
use warnings;
use 5.014;
our $VERSION = '0.10';
our @ISA = qw(ksb::ModuleSet);
use ksb::Util;
sub new
{
my $class = shift;
return bless {}, $class;
}
sub name
{
return '';
}
sub convertToModules
{
croak_internal("kdesrc-build should not have made it to this call. :-(");
}
1;