1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  
     | 
    
      #############################################################################
## Name:        ext/html/typemap.xsp
## Purpose:     typemap for XS++
## Author:      Mattia Barbon
## Modified by:
## Created:     30/11/2003
## RCS-ID:      $Id: typemap.xsp 2079 2007-07-08 21:18:04Z mbarbon $
## Copyright:   (c) 2003-2004 Mattia Barbon
## Licence:     This program is free software; you can redistribute it and/or
##              modify it under the same terms as Perl itself
#############################################################################
%typemap{wxHtmlParser*}{simple};
%typemap{wxHtmlWinParser*}{simple};
%typemap{wxFileSystem*}{simple};
%typemap{wxFSFile*}{simple};
%typemap{wxHtmlURLType}{simple};
%typemap{wxHtmlTag*}{simple};
%typemap{wxHtmlTagHandler*}{simple};
%typemap{wxHtmlWinTagHandler*}{simple};
%typemap{wxPlHtmlTagHandler*}{simple};
%typemap{wxPlHtmlWinTagHandler*}{simple};
%typemap{wxHtmlWindow*}{simple};
%typemap{wxHtmlContainerCell*}{simple};
%typemap{const wxHtmlLinkInfo&}{reference};
%typemap{wxFontEncoding}{simple};
%typemap{wxEncodingConverter*}{simple};
%typemap{const wxHtmlTag&}{reference};
%typemap{wxHtmlCell*}{simple};
%typemap{const wxHtmlCell*}{simple};
%typemap{wxHtmlWordCell*}{simple};
%typemap{wxHtmlContainerCell*}{simple};
%typemap{wxHtmlColourCell*}{simple};
%typemap{wxHtmlFontCell*}{simple};
%typemap{wxHtmlWidgetCell*}{simple};
%typemap{wxHtmlLinkInfo*}{simple};
%typemap{wxHtmlSelection*}{simple}; 
     |