view Lib/IMPL/Web/View/TemplateView.pm @ 384:4edd36025051

DOM schema refactoring
author cin
date Mon, 10 Feb 2014 17:41:34 +0400
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;