WWW-SignalWire-CompatXML version 1.0
=============================

SignalWire::CompatXML is a small module for creating SignalWire CompatXML documents:

  my $sw = new SignalWire::CompatXML;
  $sw->Response
    ->Say("Lookin' out my backdoor");
  print $sw->to_string;

becomes:

  <?xml version="1.0" encoding="UTF-8" ?>
  <Response>
    <Say>Lookin&apos; out my backdoor</Say>
  </Response>

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

  none

COPYRIGHT AND LICENCE

Copyright (C) 2011 by Scott Wiersdorf

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
at your option, any later version of Perl 5 you may have available.
