Sha256: 94a1e4dfbb052fea69bcfd83f411107db30e13cdae6961f80395d2dd7649f161

Contents?: true

Size: 647 Bytes

Versions: 1

Compression:

Stored size: 647 Bytes

Contents

/* $Id: ruby_xslt_stylesheet.h,v 1.1 2006/03/24 10:54:55 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
libxsl-ruby-0.3.6 ext/xml/ruby_xslt_stylesheet.h