view Lib/IMPL/Web/View/TemplateView.pm @ 285:546957c50a36

*IMPL::Web::Handler::TTView Reworked template selection mechanism *IMPL::Web::Application: refactoring -Removed obsolete IMPL::Text modules
author cin
date Mon, 18 Feb 2013 02:55:59 +0400
parents 2879cdb6b8cd
children 715b9959b207
line wrap: on
line source

package IMPL::Web::View::TemplateView;
use strict;

use IMPL::Const qw(:prop);
use IMPL::declare {
    base => [
        'IMPL::Web::ViewResult' => '@_'
    ],
    props => [
        template => PROP_RW,
    ]
};

1;