Mercurial > pub > Impl
view Lib/IMPL/Web/View/TemplateView.pm @ 406:f23fcb19d3c1 ref20150831
implemented ServicesBag
author | cin |
---|---|
date | Mon, 31 Aug 2015 20:22:16 +0300 |
parents | 715b9959b207 |
children |
line wrap: on
line source
package IMPL::Web::View::TemplateView; use strict; use Carp qw(carp); use IMPL::Const qw(:prop); use IMPL::declare { base => [ 'IMPL::Web::ViewResult' => '@_' ], props => [ template => PROP_RW, ] }; sub CTOR { carp "deprecated"; } 1;