I have just released Inline::CPP 0.24 to the CPAN. This is a minor release
incorporating several patches and bug fixes from Sean O'Rourke.

You can get Inline::CPP from this address:

   http://search.cpan.org/search?dist=Inline-CPP

Later,
Neil

==============================================================================
INTRODUCTION:

Inline::CPP -- Write Perl subroutines and classes in C++.

Inline::CPP lets you write Perl subroutines and classes in C++. You
don't have to learn XS or SWIG, you can just put code right "inline"
in your source.

Example:

   use Inline CPP => <<'END';

   class JAxH {
     public:
       JAxH(char *x);

       SV* data();
     private:
       SV *dat;
   };

   JAxH::JAxH(char *x) { dat = newSVpvf("Just Another %s Hacker", x); }
   SV* JAxH::data() { return dat; }

   END

   print JAxH->new('Inline')->data(), "\n";

When run, this complete program prints:

   Just Another Inline Hacker.

-----------------------------------------------------------------------------
FEATURES:

Inline::CPP version 0.24 is a minor upgrade from previous versions. It
includes:

+ unhandled types ignored, rather than causing an error
+ typenames and identifiers can now include more C++ line noise
+ operators are correctly recognized (and ignored)
+ nested classes are ignored
+ non-inline method bodies are ignored

-----------------------------------------------------------------------------
INSTALLATION:

This module requires Inline::C.pm version 0.42 or higher to be installed.

To install Inline::CPP do this:

perl Makefile.PL
make
make test
make install

(On ActivePerl for MSWin32, use nmake instead of make.)

You have to 'make install' before you can run it successfully.

-----------------------------------------------------------------------------
INFORMATION:

- For more information on Inline::CPP see 'perldoc Inline::CPP'.
- For information about Inline.pm, see 'perldoc Inline'.
- For information on using Perl with C or C++, see 'perldoc perlapi'

The Inline mailing list is [EMAIL PROTECTED] Send mail to 
[EMAIL PROTECTED] to subscribe.

Please send questions and comments to "Neil Watkiss" <[EMAIL PROTECTED]>

Copyright (c) 2002, Neil Watkiss. All Rights Reserved.

Reply via email to