view Lib/IMPL/Web/View/TemplateView.pm @ 365:7c621bb95e53

working on the metadata model
author sergey
date Mon, 02 Dec 2013 02:13:12 +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;