Mercurial > pub > Impl
diff lib/IMPL/Config/Descriptor.pm @ 407:c6e90e02dd17 ref20150831
renamed Lib->lib
author | cin |
---|---|
date | Fri, 04 Sep 2015 19:40:23 +0300 |
parents | |
children | af8d359ee4cc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lib/IMPL/Config/Descriptor.pm Fri Sep 04 19:40:23 2015 +0300 @@ -0,0 +1,51 @@ +package IMPL::Config::Descriptor; + + + +1; + +__END__ + +=pod + +=head1 NAME + +C<IMPL::Config::Descriptor> - the abstract base types for the service descriptors + +=head1 SYNOPSIS + +=begin code + +package MyDescriptor; + +use IMPL::declare { + base => { + 'IMPL::Config::Descriptor' => '@_' + } +}; + +sub Activate { + my ($this,$context) = @_; + + my $service = $context->GetService('service'); + my + +} + +=end code + +=head1 MEMBERS + +=head1 SEE ALSO + +=over + +=item * L<ReferenceDescriptor> - describes a reference to the service + +=item * L<ServiceDescriptor> - descibes a service factory + +=item * L<ValueDescriptor> - describes a value + +=back + +=cut \ No newline at end of file