Mercurial > pub > Impl
comparison Lib/IMPL/Config/Class.pm @ 196:a705e848dcc7
added IMPL::Config::Reference
| author | cin |
|---|---|
| date | Mon, 16 Apr 2012 17:42:54 +0400 |
| parents | 76515373dac0 |
| children |
comparison
equal
deleted
inserted
replaced
| 195:7a920771fd8e | 196:a705e848dcc7 |
|---|---|
| 3 use warnings; | 3 use warnings; |
| 4 | 4 |
| 5 use parent qw(IMPL::Config); | 5 use parent qw(IMPL::Config); |
| 6 use IMPL::Exception; | 6 use IMPL::Exception; |
| 7 use IMPL::Class::Property; | 7 use IMPL::Class::Property; |
| 8 use Carp qw(carp); | |
| 8 | 9 |
| 9 BEGIN { | 10 BEGIN { |
| 11 carp "the module is deprecated"; | |
| 12 | |
| 10 public property Type => prop_all; | 13 public property Type => prop_all; |
| 11 public property Parameters => prop_all; | 14 public property Parameters => prop_all; |
| 12 public property IsSingleton => prop_all; | 15 public property IsSingleton => prop_all; |
| 13 private property _Instance => prop_all; | 16 private property _Instance => prop_all; |
| 14 } | 17 } |
