#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Report::Command::CATracksWithoutSongTimings;
use strict;
use warnings;


use lib '/app/tools/rps/lib';
use RPS::Report::CATracksWithoutSongTimings;
use RPS::Report::Command::BaseReport;

use base 'RPS::Report::Command::BaseReport';

sub cmd  { return 'ca_tracks_no_timings'; }
sub area { return 'report'; }


sub _getReport
{
    my ($self, $page) = @_;  
    return RPS::Report::CATracksWithoutSongTimings->new(page => $page);
}


sub _getFilenamePrefix
{
    my ($self) = @_;
    return 'No_Timing';
}


1;

