#!/usr/bin/perl -I /home/devel/developpement/pg_analyzer-2.0
#
# Perl frontend to PgAnalyzer.pm.
#
use strict;
use PgAnalyzer;

# Instanciate PgAnalyzer.pm perl module
my $pa = new PgAnalyzer($ARGV[0]);

# Run parsing
$pa->parseFile();

# Generate graphics and html
$pa->buildHTML();


exit(0);


sub usage
{
	print "Usage: pg-analyzer.pl [ pganalyzer.conf ]\n";

	exit 0;
}

