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

#
# This class is intended to be the base class for our light-weight XML
# commands (like Ajax-style controls).
#
# The primary difference between this class and RPS::Command is that
# the basic tests for login and permissions will not return a redirect.
#

use strict;
use warnings;

use lib '/app/tools/common/lib';
use RSApache::Command::XMLCommand;
use base 'RSApache::Command::XMLCommand';

sub app { return 'rps'; }

###
1;    # Play nicely.
###
