# $Id: GenericAdapter.pm,v 1.2 2005/04/27 13:16:29 tonyb Exp $ # # Copyright (c) 2002-2005 Cunningham & Cunningham, Inc. # Released under the terms of the GNU General Public License version 2 or later. # # Perl translation by Dave W. Smith # Modified by Tony Byrne package Test::C2FIT::GenericAdapter; use strict; use vars qw(@ISA); @ISA = qw(Test::C2FIT::TypeAdapter); sub parse { my $self = shift; my($s) = @_; return $s; } 1;