#include "xpath_context.h"

namespace XPath {

ulong Context::size() const
{
#if 0
    DOM::Node n = curr.lastChild();
    if ( n.isNull() )
	return 1;

    return n.index() - curr.index();
#endif
    return 69;
}

}; // namespace XPath

// Local Variables:
// c-basic-offset: 4
// End:
