Mercurial > pub > Impl
annotate lib/IMPL/Web/View/TemplateView.pm @ 417:3ed0c58e9da3 ref20150831
working on di container, tests
| author | cin |
|---|---|
| date | Mon, 02 Nov 2015 01:56:53 +0300 |
| parents | c6e90e02dd17 |
| children |
| rev | line source |
|---|---|
| 407 | 1 package IMPL::Web::View::TemplateView; |
| 2 use strict; | |
| 3 | |
| 4 use Carp qw(carp); | |
| 5 | |
| 6 use IMPL::Const qw(:prop); | |
| 7 use IMPL::declare { | |
| 8 base => [ | |
| 9 'IMPL::Web::ViewResult' => '@_' | |
| 10 ], | |
| 11 props => [ | |
| 12 template => PROP_RW, | |
| 13 ] | |
| 14 }; | |
| 15 | |
| 16 sub CTOR { | |
| 17 carp "deprecated"; | |
| 18 } | |
| 19 | |
| 20 1; |
