Sha256: 75f41015343edfb22257844b8bb6450777ce6705580412798d882f30279317ea

Contents?: true

Size: 808 Bytes

Versions: 1

Compression:

Stored size: 808 Bytes

Contents

/* $Id: ruby_xml_xpath_context.h,v 1.1 2006/02/21 20:40:16 roscopeco Exp $ */

/* Please see the LICENSE file for copyright and distribution information */

#ifndef __RUBY_XML_XPATH_CONTEXT__
#define __RUBY_XML_XPATH_CONTEXT__

VALUE cXMLXPathContext;

typedef struct ruby_xml_xpath_context {
  VALUE xd;
  xmlXPathContextPtr ctxt;
} ruby_xml_xpath_context;

void ruby_xml_xpath_context_free(ruby_xml_xpath_context *rxxpc);
VALUE ruby_xml_xpath_context_new(VALUE class, VALUE xd,
				 xmlXPathContextPtr ctxt);
VALUE ruby_xml_xpath_context_new2(VALUE xd, xmlXPathContextPtr ctxt);
VALUE ruby_xml_xpath_context_new3(VALUE xd);
VALUE ruby_xml_xpath_context_new4(VALUE rnode);
VALUE ruby_xml_xpath_context_register_namespace(VALUE self, VALUE prefix, VALUE uri);
void ruby_init_xml_xpath_context(void);

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
libxml-ruby-0.3.6 ext/xml/ruby_xml_xpath_context.h