Sha256: f9c6aef02e5dd5ea352613c213bccad786588e72700d307579a4cc91b5381169

Contents?: true

Size: 640 Bytes

Versions: 2

Compression:

Stored size: 640 Bytes

Contents

/* $Id: ruby_xslt_stylesheet.h 42 2007-12-07 06:09:35Z transami $ */

/* 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

2 entries across 2 versions & 1 rubygems

Version Path
libxslt-ruby-0.6.0 ext/libxslt/ruby_xslt_stylesheet.h
libxslt-ruby-0.6.0-x86-mswin32-60 ext/libxslt/ruby_xslt_stylesheet.h