#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::License::Command::US::Edit;
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::BaseEdit;
use base 'RPS::License::Command::BaseEdit';

sub area { return 'license'; }

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


1;
