| Business-Travel-OTA documentation | Contained in the Business-Travel-OTA distribution. |
Business::Travel::OTA::Conversation - Base class for OTA conversation approaches
# TBD
Base class for OTA conversation approaches
* Author: Stephen Adkins <sadkins@therubicongroup.com> * Copyright: (c) 2007 Stephen Adkins (for the purpose of making it Free) * License: This is free software. It is licensed under the same terms as Perl itself.
| Business-Travel-OTA documentation | Contained in the Business-Travel-OTA distribution. |
############################################################################# ## File: $Id: Conversation.pm,v 1.2 2006/12/08 20:22:43 spadkins Exp $ ############################################################################# package Business::Travel::OTA::Conversation; use strict; use vars qw($VERSION @ISA); $VERSION = do { my @r=(q$Revision: 1.2 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r}; use App; use App::Service; @ISA = qw(App::Service);
#sub conversation { # &App::sub_entry if ($App::trace); # my ($self, $username) = @_; # my $conversation = 1; # &App::sub_exit($conversation) if ($App::trace); # return($conversation); #}
1;