# # $Id: OAM.pm,v 26.1 2004/01/15 19:33:57 biersma Exp $ # # (c) 1999-2004 Morgan Stanley Dean Witter and Co. # See ..../src/LICENSE for terms of distribution. # package MQSeries::OAM; use strict; use DynaLoader; use Exporter; use MQSeries qw(:functions); use vars qw( $VERSION @ISA @EXPORT_OK ); $VERSION = '1.23'; @ISA = qw( Exporter DynaLoader ); @EXPORT_OK = qw( ); bootstrap MQSeries::OAM; sub new { my $proto = shift; my $class = ref($proto) || $proto; my %args = @_; bless ($self, $class); return $self; } 1; __END__ =head1 NAME MQSeries::OAM - =head1 SYNOPSIS =head1 DESCRIPTION =cut