#------------------------------------------------------------
# Copyright (C) 2007 RoyaltyShare, Inc.   All Rights Reserved
#------------------------------------------------------------
package RPS::DB::Item::DynamicReport;

use strict;
use warnings;
use lib '/app/tools/common/lib';
use Common::Log;
use Common::DB::Item;
use Common::DB::ItemCollection;
use Common::Assert;

use base 'Common::DB::Item';



#
# !!! You will almost certainly want to override the _config() method to customize the configuration hash.
#





sub ReportQuery
{
    my ($class, %args) = @_;

    assert(0, 'override');
}

1;
