Weather::YR::Locationforecast::Forecast::Symbol - Stores symbol data about a forecast


Weather-YR documentation Contained in the Weather-YR distribution.

Index


Code Index:

NAME

Top

Weather::YR::Locationforecast::Forecast::Symbol - Stores symbol data about a forecast

DESCRIPTION

Top

This module stores symbol data about a forecast.

METHODS

Top

name

Accessor for the name of the symbol.

number

Accessor for the number identification of the symbol.

SEE ALSO

Top

Weather::YR::Locationforecast, Weather::YR::Locationforecast::Forecast

AUTHOR

Top

Knut-Olav, <knut-olav@hoven.ws>

COPYRIGHT AND LICENSE

Top


Weather-YR documentation Contained in the Weather-YR distribution.
package Weather::YR::Locationforecast::Forecast::Symbol;

use strict;
use warnings;

use base qw/
    Weather::YR::Locationforecast::Forecast
    Class::Accessor::Fast
/;

__PACKAGE__->mk_accessors(qw/
    name
    number
/);

1;