comparison dox_task.pl @ 7:fa7a99c2d079

dox library templates and schemas
author sergey
date Wed, 14 May 2014 01:22:21 +0400
parents
children d997ff96acf1
comparison
equal deleted inserted replaced
6:2d1a0a75fc49 7:fa7a99c2d079
1 #!/usr/bin/perl -w
2 use lib '.';
3 use config;
4 use config::bootstrap;
5 use strict;
6 use IMPL::Config;
7
8 use IMPL::require {
9 DoxygenTask => 'Benzin::Doxygen::MakedocTask',
10 DoxModel => 'Benzin::Doxygen::Model',
11 InlineFactory => 'IMPL::Object::InlineFactory'
12 };
13
14 my $task = DoxygenTask->new(
15 %config::doxSource
16 );
17
18 $task->DoWork();
19
20 print "completed\n";