Mercurial > pub > Impl
diff Lib/IMPL/DOM/Schema.pm @ 15:16795016e70b
Dom schema in progress
author | Sergey |
---|---|
date | Mon, 07 Sep 2009 17:30:55 +0400 |
parents | |
children | 75d55f4ee263 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Lib/IMPL/DOM/Schema.pm Mon Sep 07 17:30:55 2009 +0400 @@ -0,0 +1,15 @@ +package IMPL::DOM::Schema; +use strict; +use warnings; + +use base qw(IMPL::DOM::Document); +use IMPL::Class::Property; +use IMPL::Class::Property::Direct; + +__PACKAGE__->PassThroughArgs; + +BEGIN { + private _direct property _TypesMap => prop_all; +} + +1;