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

use strict;
use warnings;

use lib '/app/tools/rps/lib';
use RPS::License::CA::CrossedAccountForm;
use RPS::License::Command::CA::Show;

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

sub area { return 'ca_license'; }

sub _template { return "/app/tools/rps/templates/ca_license/account.xsl"; }
sub _form { return "RPS::License::CA::CrossedAccountForm"; }
sub _command { return "RPS::License::Command::CA::Show"; }

1;
