comparison Lib/IMPL/Config.pm @ 263:0f59b2de72af

*fixed IMPL::DOM::Schema circular module references *modified IMPL::Object::Singleton, added auto-activation *code cleanups, docs
author sergey
date Wed, 09 Jan 2013 05:17:44 +0400
parents 891c04080658
children 4ddb27ff4a0b
comparison
equal deleted inserted replaced
262:4ac39b9e2ca4 263:0f59b2de72af
1 package IMPL::Config; 1 package IMPL::Config;
2 use strict; 2 use strict;
3 use warnings; 3 use warnings;
4 4
5 use parent qw(IMPL::Object::Accessor IMPL::Object::Serializable IMPL::Object::Autofill); 5 use IMPL::declare {
6 6 base => [
7 __PACKAGE__->PassThroughArgs; 7 'IMPL::Object::Accessor' => undef,
8 'IMPL::Object::Serializable' => undef,
9 'IMPL::Object::Autofill' => '@_'
10 ]
11 };
8 12
9 use File::Spec(); 13 use File::Spec();
10 14
11 use IMPL::Class::Member; 15 use IMPL::Class::Member;
12 use IMPL::Class::PropertyInfo; 16 use IMPL::Class::PropertyInfo;