| Weather-YR documentation | Contained in the Weather-YR distribution. |
Weather::YR::Textforecast::Product - Stores a product type description
This module stores a product type description of the forecasts.
Accessor for the name of the product.
Accessor for the product description.
Knut-Olav, <knut-olav@hoven.ws>
Copyright (C) 2008 by Knut-Olav Hoven
This library is free software; you can redireibute it and/or modify it under the terms as GNU GPL version 2.
| Weather-YR documentation | Contained in the Weather-YR distribution. |
package Weather::YR::Textforecast::Product; use strict; use warnings; use base qw/Class::Accessor::Fast/;
__PACKAGE__->mk_accessors('name'); __PACKAGE__->mk_accessors('description');
1;