File Coverage

blib/lib/POE/Framework/MIDI/Noop.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 2 0.0
total 17 21 80.9


line stmt bran cond sub pod time code
1             # $Id: Noop.pm,v 1.1.1.1 2004/11/22 17:52:11 root Exp $
2              
3             package POE::Framework::MIDI::Noop;
4              
5 2     2   249301 use strict;
  2         5  
  2         69  
6 2     2   10 use vars '$VERSION'; $VERSION = '0.02';
  2         3  
  2         88  
7 2     2   563 use POE::Framework::MIDI::Utility;
  2         4  
  2         443  
8              
9             sub new {
10 2     2 0 1009 my ($self, $class) = ({}, shift);
11 2         8 bless $self, $class;
12 2         11 $self->{cfg} = shift;
13 2         12 return $self;
14             }
15              
16             # no idea how this works yet...
17             #
18             # the idea of this object is that it will allow the manipulation of various aspects
19             # of the midi environment that are not note or rest related. things like pitch bend,
20             # mod wheel, attack, decay, etc etc. at the moment it does nothing terribly interesting
21             # this is just a placeholder package for now
22 0     0 0   sub params {
23             # So what is this even for then?
24             }
25              
26             1;
27              
28             __END__