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

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

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

sub area { return 'license'; }

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

1;
