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

use lib '/app/tools/rps/lib';
use RPS::Catalog::Command::Show;
use RPS::License::CA::EditForm;
use RPS::DB::Item::CAMechanicalRun;

use RPS::License::Command::BaseCopy;
use base 'RPS::License::Command::BaseCopy';

sub area { return 'ca_license'; }

sub _template { return "/app/tools/rps/templates/ca_license/copy.xsl"; }
sub _form { return "RPS::License::CA::EditForm"; }
sub _tab { return RPS::Catalog::Command::Show::kTabCALicenses; }

1;
