#------------------------------------------------------------
# Copyright (C) 2009 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::Statement::Status;

# The point of this package is simply to define the status types that all statements
# will share.  This makes it easier to write common control logic.
#
use strict;
use warnings;

use constant kNotQueued => 0;
use constant kInQueue   => 1;
use constant kRunning   => 2;   
use constant kComplete  => 3; 
use constant kError     => 4; 
use constant kAborted   => 5; 


1;
