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

use strict;
use warnings;
use Data::Dumper;
use Carp;
use Date::Calc qw( Date_to_Days Decode_Date_US );

use lib '/app/tools/common/lib';
use Common::Assert;
use Common::Util qw(decodeDateMysql);
use Common::Log;

use lib '/app/tools/rps/lib';
use RPS::License::BaseLicense;
use RPS::DB::Item::ReserveLiquidation;
use RPS::DB::Item::RegionCountryMap;
use RPS::DB::Item::Product;

use base 'RPS::License::BaseLicense';

sub _propertiesFromDefaults {
    my ( $self, $hrProperties, %args ) = @_;

    $self->SUPER::_propertiesFromDefaults( $hrProperties, %args );
    $hrProperties->{type} = $self->_type();
}

###
1;    #
###
