Sha256: d64f15361ea14f1033d08b89f6edf2c36ff1e41a807e871b73d837fb0516c723
Contents?: true
Size: 651 Bytes
Versions: 1
Compression:
Stored size: 651 Bytes
Contents
/* $Id: ruby_xslt_stylesheet.h,v 1.1.1.1 2006/03/09 01:36:19 roscopeco Exp $ */ /* Please see the LICENSE file for copyright and distribution information. */ #ifndef __RUBY_LIBXSLT_STYLESHEET__ #define __RUBY_LIBXSLT_STYLESHEET__ extern VALUE cXSLTStylesheet; typedef struct ruby_xslt_stylesheet { int data_type; void *data; VALUE parsed; /* XML::Document # parsed xml document after xsl apply */ VALUE xml_doc_obj; /* XML::Document */ xsltStylesheetPtr xsp; } ruby_xslt_stylesheet; void ruby_init_xslt_stylesheet(void); VALUE ruby_xslt_stylesheet_new(VALUE class, xsltStylesheetPtr xsp); #endif /* __RUBY_LIBXSLT_STYLESHEET__ */
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libxslt-ruby-0.3.6 | ext/xml/ruby_xslt_stylesheet.h |